How to find the location (ROI) of a recognized object in a tensor stream

I used the android example of the tensor stream, which takes place to host the ROI (see the tensor stream /examples/android/src/.../Classifier.java), but it is not used. I would like to be able to find the ROI for the classified object. I looked at the code, but it was not clear how to determine the location. Does this tensor support?

+4
source share
1 answer

Unfortunately, this placeholder is not filled, and in fact, determining the area of ​​interest of an object is still a difficult research problem. We currently do not have a sample model released that can do this in TensorFlow, but if you want to view the study, the search term is “localization”.

Here you can find a useful question:

Does the convolutional neural network have localization capabilities on images?

+7
source

Source: https://habr.com/ru/post/1621179/


All Articles