如何在R中将Google Streetview API保存为图像响应?

时间:2019-02-05 15:36:15

标签: r google-street-view googleway

我需要将google_streetview API的结果另存为图片(.jpg,.png)

我正在一个小项目中测试图像识别算法。我正在从Google Street下载一些图像,我需要将此图像另存为.jpg或.png格式。

 library(googleway)

 p <- google_streetview(location = c(centerlat,centerlng),              
              size = c(500,500),                
              panorama_id = NULL,               
              output = "plot",              
              heading = 0,              
              fov = 15,             
              pitch = 0,                
              response_check = FALSE,               
              key = key)

我尝试使用download.file和库映像程序:

第一:

 download.file(p, destfile="test.jpg")

if(stringr :: str_count(imagePath,“ http”)> 0){时出错   参数的长度为零

第二:

 library(imager)
 imager::save.image(p,"test.jpeg")

imager :: save.image(p,“ test.jpeg”)中的错误:   第一个参数应该是图片

如何自动保存这些图像?

1 个答案:

答案 0 :(得分:2)

这有点猜测,因为我没有API密钥。

这是google_streetview函数的最后一位:

map_url <- constructURL(map_url, c(location = location, pano = panorama_id, 
    size = size, heading = heading, fov = fov, pitch = pitch, 
    key = key))
if (output == "plot") {
    z <- tempfile()
    utils::download.file(map_url, z, mode = "wb")
    pic <- jpeg::readJPEG(z)
    file.remove(z)
    graphics::plot(0:1, 0:1, type = "n", ann = FALSE, axes = FALSE)
    return(graphics::rasterImage(pic, 0, 0, 1, 1))
}
else {
    return(map_url)
}

请注意,如果output="plot",则将map_url下载到tempfile,然后将其读入jpeg,然后对其进行绘制,并删除临时文件。我们怎么去那个jpeg?

如果output="html",则返回map_url。这必须是图像的URL。因此,用output="html"进行调用并存储返回值,然后下载:

url = google_streetview(..., output="html")
t = tempfile()
download.file(url, t, model="wb")
message(t, " should be a JPEG...")

您尝试使用output="plot"进行操作,在这种情况下,它会返回return(graphics::rasterImage(pic, 0, 0, 1, 1)),该值始终为NULL。