我想将表单识别器“boundingBox”的结果转换为图像坐标以可视化叠加图像和识别的数据。但是,boundingBox 结果看起来不像此图像这样的 XY 坐标位置。 https://i.stack.imgur.com/DOEi5.png
我需要每个boundingBox的左上(X1,Y1)和右下(X2,Y2)计算规则。
我还用认知服务 OCR 和文本识别制定了一些计算规则,但没有关于表单识别器的信息。我试图通过减号或除法找到 XY 坐标规则,但不是我得到的规则。
这是我通过表单识别器的示例图像获得的结果 json 数据。但无法从中找到 boundingBox 规则。
Responsebody: {
'status': 'success',
'pages': [
{
'number': 1,
'height': 792,
'width': 612,
'clusterId': 0,
'keyValuePairs': [
{
'key': [
{
'text': 'Address:',
'boundingBox': [
57.3,
683.0,
100.5,
683.0,
100.5,
673.7,
57.3,
673.7
]
}
],
'value': [
{
'text': '1020 Enterpirse Way.',
'boundingBox': [
57.3,
672.2,
153.1,
672.2,
153.1,
658.8,
57.3,
658.8
],
'confidence': 0.53
},
我需要每个boundingBox的左上(X1,Y1)和右下(X2,Y2)计算规则。
感谢团队。