Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 OpenCV 连接到 XUbuntu 13.10 中 Odroid U3 上的摄像头,但我尝试使用的网络摄像头默认为 /dev/video10。据我所知,OpenCV 最多只能读取 /dev/video7。如何更改相机设备节点?
一种方法是将 0-7 之间的设备节点之一移动到其他未使用的节点。然后将node0链接到node10。这可以通过具有 root 权限的终端来完成。
例子:
mv /dev/video0 /dev/videoX ln /dev/video10 /dev/video0