2

使用 batchUpadte 方法,我正在尝试从源图像连接多个 360 度图像。

例如,下面是我对 batchUpdate 方法的 python 请求:

update_photo_url = 'https://streetviewpublish.googleapis.com/v1/photos:batchUpdate'

headers = {"Authorization": "Bearer {}".format("ya29.Glx6BO91jWbj...."), "Content-Length": "0", "Content-Type": "application/json"}

update_body = {
  "updatePhotoRequests": [
    {
      "updateMask": "connections",
      "photo": {
        "photoId": {
          "id": "image_1"
        },
        "connections": [
          {
            "target": {
              "id": "image_2"
            }
          },
          {
            "target": {
              "id": "image_3"
            }
          }
        ]
      }
    },
    {
      "updateMask": "connections",
      "photo": {
        "photoId": {
          "id": "image_3"
        },
        "connections": [
          {
            "target": {
              "id": "image_4"
            }
          }
        ]
      }
    }
  ]
}
update_response = requests.post(update_photo_url,headers=headers,json=update_body)
update_response.text  

发送此请求后,我的状态为 200 OK,但有一个问题,我有四个图像。我正在图像之间建立联系,如下所示:

image_1 -> image_2, image_3
image_3 -> image_4

使用上面的代码,我可以从 image_2 -> image_1, image_1 -> image_3, image_3 -> image_1, image_3 -> image_4 和 image_4 -> image_3 但是 为什么我不能从 image_1 -> image_2

请帮我解决这个问题。谁能告诉我,我的请求有什么问题?

4

1 回答 1

0

您是否检查过移动街景应用或浏览器中的连接?浏览器有时会添加或断开连接,但我发现移动应用程序是查看存储在 Google 服务器上的“基本事实”的最佳方式。

于 2017-07-05T09:26:11.587 回答