GithubHelp home page GithubHelp logo

Comments (5)

pauperonway avatar pauperonway commented on June 12, 2024

@Xonxt need help...

from hello_tf_c_api.

Xonxt avatar Xonxt commented on June 12, 2024

@pauperonway could you please give a bit more detail on how you modify the loadModel() and what exactly does your model's output look like?

from hello_tf_c_api.

pauperonway avatar pauperonway commented on June 12, 2024

now the result is ok.
i modify a few lines like this:(FYI)

bool tf_image::TF_Model::loadModel( const std::string & path, const double gpu_memory_fraction, bool inferIO )
{
// create an empty status;
...
//get final_binary_output
std::vectorstd::string outputNames;
outputNames.clear();
std::string binary_output_name = "net/final_binary_output";
name = binary_output_name.c_str();
//inputNames.push_back(binary_output_name);
outputNames.push_back(name);
// get last:
while ( (op = TF_GraphNextOperation( m_pGraph, &pos )) != nullptr ) {
name = TF_OperationName( op );
}
outputNames.push_back(name);
setOutputs( { outputNames } );
}
return true;
}

std::vectorcv::Mat tf_image::TF_Model::predict_image2image( const std::vectorcv::Mat& input )
{
...
// if everything ok, parse the output:
if ( !output_tensors.empty() ) {
// construct the method output:
for ( size_t i = 0; i < output_tensors.size(); i++ )
{
auto shape = GetTensorShape( output_tensors.at( i ) );
if (shape[2] <= 0 || shape[2] > 3) shape[2] = 1;
auto data = tf_utils::GetTensorsData( { output_tensors.at( i ) } );
// go through all outputs
output.push_back( cv::Mat( static_cast(shape[0]), static_cast(shape[1]), CV_32FC( static_cast(shape[2]) ), (void*) data[0].data() ) );
}
}
return output;
}

from hello_tf_c_api.

pauperonway avatar pauperonway commented on June 12, 2024

@Xonxt the key modify should be data[i] ---> data[0].

from hello_tf_c_api.

pauperonway avatar pauperonway commented on June 12, 2024

@Neargye hope this branch could merge to master.

from hello_tf_c_api.

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.