我需要将来自 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") 中的错误:第一个参数应该是图像
如何自动保存这些图像?