我是否需要 google-apis-explorer for Vision?

Do I need google-apis-explorer for Vision?

我正在关注 OCR Tutorial,所以当然调用 GC 的 API,我注意到 OCR 主页底部提到 API Explorer。这是什么 "Explorer",Vision 需要它吗?

Explorer 只是所有 Google API 的测试台,因此您可以单独测试 API 或 "Try Before You Buy" 查看可用的功能。例如,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 ...