I want to extract depth images using the google street view api. I am using python, and I am able to query rgb images, but I can't seem to obtain depth images.
I came across this: https://github.com/proog128/GSVPanoDepth.js
So, it seems depth should be available, but I don't see options for depth looking at the google street view api documentation. Is depth available via the google api?
Depth information is available as a grayscale image that represents the distance from the camera to each pixel in the image. To retrieve the depth map, you can use the Google Street View Image API and include the depth parameter in the request.
The depth_map parameter is set to true, which will return a depth map along with the Street View image. You can then use this depth map data to extract depth information.
To do this with python you can try this