我想在我的USB Kinect相机上使用raspistill。我设法通过fswebcam连接并使用它,但当我输入raspistill -v -o test.jpg时,我得到以下消息:
mmal: main: Failed to create camera component.
mmal: Camera is not detected. Please check carefully the camera module is installed correctly.有没有办法让raspistill在/dev/video0中使用摄像头?
发布于 2019-04-18 21:51:29
你会看到mmal抱怨没有检测到设备,因为它假设你使用的是通过Pi的MIPI-CSI接口连接到Pi的raspi相机模块,而不是通过你的usb接口呈现的视频设备。
我猜mmal不支持usb摄像头,所以基本上你不能在usb摄像头上使用raspistill,如果这不是真的,请纠正我。
https://stackoverflow.com/questions/27025142
复制相似问题