How can this be done using the Google Vision-API, please?
- send image to vision-api
- request: 'features': [{': 'LABEL_DETECTION', 'maxResults': 10,}]
- receive shortcuts, in particular those in which I am interested, is a "watch"
- get boundingPoly so that I know the exact location of the clock in the image
- having received boundingPoly, I would like to use it to create a dynamic AR marker that will be tracked by the AR library
Currently, the Google Vision-API does not seem to support boudingPoly for LABELS, so the question is whether there is a way to solve it using the Vision-API.
source
share