How can this be completed with the Google Vision-API please?
- send image to vision-api
- request: 'features': [{': 'LABEL_DETECTION','maxResults': 10,}]
- receive the labels in particular the one I'm interest in is a "clock"
- receive the boundingPoly so that I know the exact location of the clock within the image
- having received the boundingPoly I would want to use it to create a dynamic AR marker to be tracked by the AR library
Currently it doesn't look like Google Vision-API supports a boudingPoly for LABELS hence the question if there is a way to solve it with the Vision-API.