Giter Club home page Giter Club logo

Comments (2)

jxt1234 avatar jxt1234 commented on July 18, 2024
for (int i = 0; i < 256; ++i) {
    cv::Vec3f* ptr = rect_img.ptr<cv::Vec3f>(i);
    for (int j=0;j<256;j++){
        input_tensor_->host<float>()[i*j] = ptr[j][0];
        input_tensor_->host<float>()[i*j+1] = ptr[j][1];
        input_tensor_->host<float>()[i*j+2] = ptr[j][2];
    }
}

这段代码明显有问题,如果是 nhwc 布局应该是 (i * 256 + j)*3 .

from mnn.

jxt1234 avatar jxt1234 commented on July 18, 2024

另外 onnx 一般是 NCHW 布局,转换 mnn 时加上 --keepInputFormat=1 ,

        input_tensor_->host<float>()[i*256+j] = ptr[j][0];
        input_tensor_->host<float>()[i*256+j+1*256*256] = ptr[j][1];
        input_tensor_->host<float>()[i*256+j+2*256*256] = ptr[j][2];

from mnn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.