2016-11-22 12 views
1

私はopenCV for C++をubuntuにインストールしようとしています。私はthis documentを使用しています。しかし、コンパイルのステップは失敗します。 makeのログは次のとおりです。ubuntuでのC++コンパイルのためのOpenCV 2.4.13が失敗する

$make 
[ 0%] Built target opencv_core_pch_dephelp 
[ 0%] Built target pch_Generate_opencv_core 
[ 3%] Built target opencv_core 
[ 4%] Built target opencv_ts_pch_dephelp 
[ 4%] Built target pch_Generate_opencv_ts 
[ 4%] Built target opencv_flann_pch_dephelp 
[ 5%] Built target pch_Generate_opencv_flann 
[ 5%] Built target opencv_flann 
[ 5%] Built target opencv_imgproc_pch_dephelp 
[ 5%] Built target pch_Generate_opencv_imgproc 
[ 9%] Built target opencv_imgproc 
[ 9%] Automoc for target opencv_highgui 
[ 9%] Built target opencv_highgui_automoc 
[ 9%] Automoc for target opencv_highgui_pch_dephelp 
[ 9%] Built target opencv_highgui_pch_dephelp_automoc 
[ 9%] Built target opencv_highgui_pch_dephelp 
[ 9%] Built target pch_Generate_opencv_highgui 
[ 9%] Building CXX object modules/highgui/CMakeFiles/opencv_highgui.dir /src/window_QT.cpp.o 
In file included from /home/src/OpenCV/opencv-2.4.13/modules/highgui/src/window_QT.cpp:47:0: 
/home/src/OpenCV/opencv-2.4.13/modules/highgui/src/window_QT.h:46:20: fatal error: QtOpenGL: No such file or directory 
#include <QtOpenGL> 
        ^
compilation terminated. 
make[2]: *** [modules/highgui/CMakeFiles/opencv_highgui.dir/src/window_QT.cpp.o] Error 1 
make[1]: *** [modules/highgui/CMakeFiles/opencv_highgui.dir/all] Error 2 
make: *** [all] Error 2 

このコンパイルの問題を解決するのに手伝ってください。

+0

をQtOpenGLが、私はまた、これらの2つのパッケージがインストールさ –

答えて

0

私はrunnuingによってコンパイルエラーを回避:

cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_QT=ON -D WITH_OPENGL=ON .. 

の代わりに:libqt5opengl5 libqt5opengl5-devの:

cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D BUILD_EXAMPLES=ON -D WITH_QT=ON -D WITH_OPENGL=ON .. 
+0

がインストールされています。 (参照先:http://stackoverflow.com/questions/31538560/qtopengl-no-such-file-or-directory-opencv-python) –

関連する問題