Ask Your Question
0

VideoCapture is not working in OpenCV 2.4.2

asked 2012-07-11 15:37:17 -0600

updated 2012-07-11 23:32:38 -0600

I recently installed OpenCV 2.4.2 in Ubuntu 12.04.

cap = VideoCapture(0)

is working. but I can't grab frames from some video source.

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

gives me a numpy with all zero elements.

I have also installed ffmpeg 0.11, Latest snapshot of x264, v4l-0.8.8 (All are latest stable versions)

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

When I do cmake, I get this

-- Detected version of GNU GCC: 46 (406) -- Found OpenEXR: /usr/lib/libIlmImf.so

-- Looking for linux/videodev.h

-- Looking for linux/videodev.h - not found

-- Looking for linux/videodev2.h

-- Looking for linux/videodev2.h - found

-- Looking for libavformat/avformat.h

-- Looking for libavformat/avformat.h - found

-- Looking for ffmpeg/avformat.h

-- Looking for ffmpeg/avformat.h - not found

-- checking for module 'tbb'

-- package 'tbb' not found

And

-- 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

What's the problem here ?

edit retag flag offensive close merge delete

Comments

read just gives you a frame, maybe it is a black frame ? At least you get something. What is your codec for that video ? What is the size of the array you get ? Your CMake looks fine

Vincent Rabaud gravatar imageVincent Rabaud ( 2012-07-12 11:08:42 -0600 )edit

it's a black frame. But I solved the issue. I had not configured ffmpeg properly.

jayrambhia gravatar imagejayrambhia ( 2012-07-12 13:20:24 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
3

answered 2012-07-12 13:25:09 -0600

updated 2012-07-13 01:15:20 -0600

So, I realized there was some problem with ffmpeg. and I rebuilt and installed ffmpeg and then changed flags for cmake to make opencv.

For 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

For OpenCV,

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

Here's the complete script to install OpenCV 2.4.2 https://github.com/jayrambhia/Install-OpenCV/blob/master/Ubuntu/2.4/opencv242.sh

and here's my blogpost about OpenCV 2.4.2 installation in detail http://jayrambhia.wordpress.com/2012/06/20/install-opencv-2-4-in-ubuntu-12-04-precise-pangolin/

edit flag offensive delete link more

Question Tools

Stats

Asked: 2012-07-11 15:37:17 -0600

Seen: 9,682 times

Last updated: Aug 14 '12