我试图从连接到我的linux机器的网络摄像头读取原始视频。我使用的是OpenCV和l4v2库(gstreamer)。 以下是我相机的一些细节:
root@blah:~$ v4l2-ctl -d /dev/video0 --list-formats
ioctl: VIDIOC_ENUM_FMT
Index : 0
Type : Video Capture
Pixel Format: 'YUYV'
Name : YUV 4:2:2 (YUYV)
Index : 1
Type : Video Capture
Pixel Format: ''
Name : e436eb7d-524f-11ce-9f53-0020af0
Index : 2
Type : Video Capture
Pixel Format: 'RGB3' (emulated)
Name : RGB3
Index : 3
Type : Video Capture
Pixel Format: 'BGR3' (emulated)
Name : BGR3
Index : 4
Type : Video Capture
Pixel Format: 'YU12' (emulated)
Name : YU12
Index : 5
Type : Video Capture
Pixel Format: 'YV12' (emulated)
Name : YV12
这是我的超级简单代码:
VideoCapture capture = VideoCapture(0);
if (!capture.isOpened()) {
// Error in opening the video input
cerr << "Unable to open video file for read: " << FLAGS_in_video << endl;
}
else {
cout << "Opened video for read: " << FLAGS_in_video << endl;
}
这是输出和错误:
Trying to open device 0 to read.
VIDEOIO ERROR: V4L/V4L2: VIDIOC_S_CROP
mmap: Invalid argument
Opened video for read: 0
Unable to stop the stream.: Bad file descriptor
munmap: Invalid argument
munmap: Invalid argument
munmap: Invalid argument
munmap: Invalid argument
我已经在WITH_V4L和WITH_LIBV4L标志为ON的情况下构建了OpenCV。
我很感激任何帮助或建议如何解决它。谢谢。
答案 0 :(得分:1)
最终计算出来 - 我有LP_PRELOAD,它强制加载l4lib而不是l4v2。