VideoCapture没有OpenCV中2.4.2工作(VideoCapture is not w

2019-06-26 05:43发布

我最近在Ubuntu 12.04安装OpenCV的2.4.2。

cap = VideoCapture(0)

工作中。 但我不能抓住从一些视频源帧。

cap = VideoCapture("input.avi")
img = cap.read() 

给我所有的零个元素numpy的。

我还安装了ffmpeg的0.11,X264,为v41-0.8.8(全部是最新的稳定版本)的最新快照

cmake -D WITH_QT=ON -D WITH_FFMPEG=ON -D WITH_OPENGL=ON -D WITH_TBB=ON -D BUILD_EXAMPLES=OFF WITH_V4L=ON .. 
make
sudo make install

当我做CMake的,我得到这个

- 检测到的GNU GCC的版本:46(406)
- 发现的OpenEXR:/usr/lib/libIlmImf.so
- 寻找LINUX / videodev.h
- 寻找LINUX / videodev.h - 未找到
- 寻找LINUX / videodev2.h
- 寻找LINUX / videodev2.h - 发现
- 寻找了libavformat / avformat.h
- 寻找了libavformat / avformat.h - 发现
- 寻找的ffmpeg / avformat.h
- 寻找的ffmpeg / avformat.h - 未找到
- 检查模块“TBB”
- 包“TBB”未找到

--   Video I/O:  
--     DC1394 1.x:                  NO  
--     DC1394 2.x:                  YES (ver 2.2.0)  
--     FFMPEG:                      YES  
--       codec:                     YES (ver 54.23.100)  
--       format:                    YES (ver 54.6.100)  
--       util:                      YES (ver 51.54.100)  
--       swscale:                   YES (ver 2.1.100)  
--       gentoo-style:              YES  
--     GStreamer:                   
--       base:                      YES (ver 0.10.36)  
--       app:                       YES (ver 0.10.36)  
--       video:                     YES (ver 0.10.36)  
--     OpenNI:                      NO  
--     OpenNI PrimeSensor Modules:  NO  
--     PvAPI:                       NO  
--     UniCap:                      NO  
--     UniCap ucil:                 NO  
--     V4L/V4L2:                    Using libv4l (ver 0.8.8)  
--     XIMEA:                       NO  
--     Xine:                        NO

我找了videodev.h等

  • /usr/include/linux/videodev2.h存在
  • /usr/include/libavformat/avformat.h存在
  • /usr/local/include/libavformat/avformat.h存在

但我找不到ffmpeg/avformat.h

这里有什么问题吗?

Answer 1:

所以,我意识到有一些问题的ffmpeg。 和我重建和安装的ffmpeg,然后改变为标志的cmake做的OpenCV。

对于ffmpeg的,

 ./configure --enable-gpl --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-nonfree --enable-postproc --enable-version3 --enable-x11grab 
make 
sudo make install

对于OpenCV的,

cmake -D CMAKE_BUILD_TYPE=RELEASE ..
make
sudo make install

下面是完整的脚本安装OpenCV 2.4.2 https://github.com/jayrambhia/Install-OpenCV/blob/master/Ubuntu/2.4/opencv2_4_2.sh

这是我的关于OpenCV的2.4.2安装详细博文http://jayrambhia.com/blog/install-opencv-2-4-in-ubuntu-12-04-precise-pangolin/



Answer 2:

要运行一个完全安装的OpenCV的请尝试以下操作:

sudo apt-get install libopencv-dev python-opencv

欲了解更多详情请查看以下链接http://milq.github.io/install-opencv-ubuntu-debian/



文章来源: VideoCapture is not working in OpenCV 2.4.2