我最近在 Ubuntu 12.04 中安装了 OpenCV 2.4.2。
cap = VideoCapture(0)
正在工作中。但我无法从某些视频源中抓取帧。
cap = VideoCapture("input.avi")
img = cap.read()
给我一个全零元素的numpy。
我还安装了ffmpeg 0.11,x264的最新快照,v4l-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
这里有什么问题?