17

I am currently using Microsoft Azure Cognitive Services Handwriting Detection API. The API returns a set of values for the bounding box:

{
 "boundingBox": [
 2,
 52,
 65,
 46,
 69,
 89,
 7,
 95
 ],
 "text": "dog",
 .
 .
 .

I would like to make sense of these 8 parameters. What is their significance and what do they reflect? I tried hard finding about them in Microsoft API's documentation, but of no use. Kindly help me understand what these parameters mean or link me to some place where this doubt can be cleared. Also let me know if you need any more information.

asked May 29, 2018 at 4:42
1
  • can you know how to draw a bounding box with those coordinates? any help is highly appreciated. Commented Dec 7, 2019 at 2:44

2 Answers 2

19

According to this, the API returns the four corners of the box in X,Y coordinates. So:

X top left, Y top left, X top right, Y top right, X bottom right, Y bottom right, X bottom left, Y bottom left

answered May 29, 2018 at 6:48
Sign up to request clarification or add additional context in comments.

1 Comment

7

This information is unnecessarily hidden. I finally found it in their edx course

enter image description here

Maria Ines Parnisari
17.6k10 gold badges95 silver badges138 bronze badges
answered Jun 27, 2018 at 21:09

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.