我最近在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
这里有什么问题吗?