根据这个信息链接,TensorFlow Lite 现在支持使用 MobileNet-SSD v1 模型进行对象检测。此链接中有一个 Java 示例,但是如何在 C++ 中解析输出?我找不到任何关于此的文档。此代码显示了一个示例。
.......
(fill inputs)
.......
intepreter->Invoke();
const std::vector<int>& results = interpreter->outputs();
TfLiteTensor* outputLocations = interpreter->tensor(results[0]);
TfLiteTensor* outputClasses = interpreter->tensor(results[1]);
float *data = tflite::GetTensorData<float>(outputClasses);
for(int i=0;i<NUM_RESULTS;i++)
{
for(int j=1;j<NUM_CLASSES;j++)
{
float score = expit(data[i*NUM_CLASSES+j]); // ¿? This does not seem to be correct.
}
}