I tried to install OpenCV2.2 on Ubuntu 11.04. But OpenCV compilation fails stating an error related to linux/videodev.h file. File available in /user/includes/linux is named videodev2.h.

/home/user/OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp:217:28: fatal error:    linux/videodev.h: No such file or directory
compilation terminated.
make[2]: *** [modules/highgui/CMakeFiles/opencv_highgui.dir/src/cap_v4l.o] Error 1
make[1]: *** [modules/highgui/CMakeFiles/opencv_highgui.dir/all] Error 2
make: *** [all] Error 2

Is there a solution for this ?

thank you.

link|improve this question

updated version is available at https://code.ros.org/svn/opencv/trunk. And libv4l-dev is need to be installed in addition to other libraries. – Niroshan Jun 5 '11 at 12:37
2  
This error also occurs when compiling VXL. Alberto's answer, coupled with Niroshan's comment helped me solve it. You must make Niroshan's changes to these two files: $VXLSRC/contrib/oul/oufgl/frame_grabber_v4l.h and $VXLSRC/contrib/oul/oufgl/frame_grabber_vil.h – Mirkules Aug 31 '11 at 22:38
I just wanted to clarify, it is Niroshan's comment on Alberto's answer that fixes the issue for VXL. – diedthreetimes Nov 21 '11 at 20:15
feedback

3 Answers

up vote 11 down vote accepted
sudo apt-get install libv4l-dev
link|improve this answer
4  
need to edit cap_v4l.cpp, replace #include <videodev.h> with #include <libv4l1-videodev.h> as suggested in the link provided by karlphillip – Niroshan May 5 '11 at 17:17
feedback

The patch is here: https://code.ros.org/trac/opencv/attachment/ticket/862/OpenCV-2.2-nov4l1.patch

By adding #ifdef HAVE_CAMV4L around

#include <linux/videodev.h>

in OpenCV-2.2.0/modules/highgui/src/cap_v4l.cpp and removing || defined (HAVE_CAMV4L2) from line 174 allowed me to compile.

link|improve this answer
feedback

v4l support has been dropped in recent kernel versions (including the one shipped with Ubuntu 11.04).

EDIT: Your question is connected to a recent message that was sent to the OpenCV users group, which has instructions to compile OpenCV 2.2 in Ubuntu 11.04. Your approach is not ideal.

link|improve this answer
@Niroshan Updated answer. – karlphillip May 2 '11 at 13:14
I have few questions, that link tells to download libcv-dev libcvaux-dev libhighgui-dev and libcv2.1 libcvaux2.1 libhighgui2.1 libraries. Don't they belong to two earlier versions of OpenCV? And later it tells to download OpenCV2.2 source code. Is this accurate? please explain me, I am not that familiar with OCV library. Thank you – Niroshan May 2 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.