TensorFlowImageClassifier用于获取视频帧中的对象位置

时间:2018-06-11 15:43:20

标签: android image-processing tensorflow

在TensorFlowImageClassifier.java中,不提供相机Feed(框架)中对象的位置。

 for (int i = 0; i < outputs.length; ++i) {
      if (outputs[i] > THRESHOLD) {
        pq.add(
            new Recognition(
                "" + i, labels.size() > i ? labels.get(i) : "unknown", outputs[i], null));
      }
    }

Screenshot attached in here!

有人可以帮助我获取对象的位置吗?

0 个答案:

没有答案