Hi,
I’m trying to run caffe model that gives out 4 tensors.
I need the output tensor to calculate the prob. of detection.
I’m trying to access the output tensors by
float* output_data1 = static_cast<float >(outputLayersInfo[0].buffer);
float output_data2 = static_cast<float >(outputLayersInfo[1].buffer);
float output_data3 = static_cast<float >(outputLayersInfo[2].buffer);
float output_data4 = static_cast<float *>(outputLayersInfo[3].buffer);
but I see that the results are much different than the results I get by running same picture in caffe.
what can be the problem?
2.is this is the right way to access the output tensors?
I have used the example and still the results are far from what I expect to get
something that I noticed is when I change from BGR -> RGB the output doesn’t change
You can check the output log of deepstream.
By the way, we have a plugin sample for fasterRCNN. You can check it for some information first.
{deepstream_sdk_on_jetson}/sources/objectDetector_FasterRCNN