Microsoft Azure文本识别边界框响应中的(X,Y)坐标是什么单位?

时间:2018-12-28 19:21:35

标签: azure microsoft-cognitive azure-cognitive-services face-api

Microsoft Azure文本识别边界框响应中的(X,Y)坐标是什么单位?

例如:

{
  "status": "Succeeded",
  "succeeded": true,
  "failed": false,
  "finished": true,
  "recognitionResult": {
    "lines": [
      {
        "boundingBox": [
          67,
          204,
          668,
          210,
          667,
          272,
          66,
          267
        ],
        "text": "Our greatest glory is not",
        ...

json响应按顺时针方向显示边界框的四个坐标。但是,我还没有找到这个单位。我假设它是像素,但是没有写在任何地方...

此处提供了API:

https://westus.dev.cognitive.microsoft.com/docs/services/5adf991815e1060e6355ad44/operations/587f2cf1154055056008f201

1 个答案:

答案 0 :(得分:2)

您假设的像素是像素,尝试以像素为单位跟踪API在图像上提供的坐标,您会发现自己在API检测到的每个对象周围绘制了一个矩形。

只需将您的图像视为一个坐标平面,以像素为单位,这实际上就是现实。