Microsoft Azure Cognitive Services Handwriting Detection Bounding Box Parameters

两盒软妹~` 提交于 2021-02-18 21:01:24

问题


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.


回答1:


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




回答2:


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



来源:https://stackoverflow.com/questions/50576426/microsoft-azure-cognitive-services-handwriting-detection-bounding-box-parameters

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!