我正在尝试使用“ imwrite”功能在Python中将图像写入USB驱动器。这是我的代码:
_, img = camera.read()
print("saved!")
global img_counter
img_name = "snapshot/opencv_frame_{}.png".format(img_counter)
cv2.imwrite(img_name,img)
这样,我将图像写入文件夹中。如果我放:
img_name = "/mnt/usbdrive/imgtest/opencv_frame_{}.png".format(img_counter)
类似路径(显然是在安装后),图像未保存在USB驱动器上。
有什么主意吗?