我遵循OCR Tutorial,因此当然要调用GC的API,并且我注意到OCR主页的底部提到了API Explorer。这是什么“资源管理器”,我需要Vision吗?
答案 0 :(得分:1)
Explorer只是用于所有Google API的测试平台,因此您可以单独或“先试用后购买”来测试API,以查看可用的功能。例如,this page允许您形成OCR查询并查看响应的外观。您不需要此工具,但是它可能对调试很有用。
例如,给定this random source image,click this link to Google Explorer,然后按Execute without OAuth
按钮,您将获得如下所示的结果:
{
"responses": [
{
"textAnnotations": [
{
"locale": "en",
"description": "How to\nInsert Text\nText Boxes in\nGoogle Docs\nBox\nControlAltAchieve.com @ericcurts\n",
"boundingPoly": {
"vertices": [
{
"x": 128,
"y": 20
},
{
"x": 909,
"y": 20
},
{
"x": 909,
"y": 502
},
{
"x": 128,
"y": 502
}
]
}
},
... And so on for many a page ...