我正在尝试将相机(Raspberry GSCam)连接到运行 ubuntu 20.04 aarch 64 的 Raspberry pi 4。
我已将start_x=1
和添加gpu_mem=128
到并重启。下/boot/firmware/config.txt
仍然没有设备。video0
/dev
尝试使用以下代码拍照:
import cv2
cam = cv2.VideoCapture("/dev/video0", cv2.CAP_V4L)
_, frame = cam.read()
cv2.imwrite("path.jpeg", frame)
cam.release()
给出:
open VIDEOIO(V4L2): backend is generally available but can't be used to capture by name
所以我假设 raspberry 无法检测到相机。我还检查了物理连接,一切正常,相机在 raspbian 操作系统下工作正常。
我的问题是:如何解决这个问题?