검색결과 리스트
글
Compiling OpenCV without QT (QT 설정을 제외하고 OpenCV 컴파일 방법)
Recently there was a big problem while using LSD SLAM as ROS. When I installed LSD SLAM with ROS Kinetic, 'DebugWindow DEPTH' is not reponding with no image. I found that you must install the OpenCV library separately.
First, download the latest version of OpenCV.
$ wget https://github.com/opencv/opencv/archive/3.4.3.zip
Second, unzip the downloaded file.
$ unzip 3.4.3.zip
Third, download and install cmake-gui
$ sudo apt install cmake-qt-gut
After that, make a build folder and Prepare to use cmake-gui.
$ cd opencv-3.4.3
$ mkdir build
$ cd build
$ cmake-gui ../
If you proceed as far as this, you will see the following screen.
Now click the "Generate" button.
Then you can see the result above. Please uncheck "WITH_QT" and click "Generate" again. Then you finish the work.
Finally compile and install your program!
$ make -j4 && sudo make install
'공대생의 팁' 카테고리의 다른 글
C++ 클래스 객체를 stream으로 통신 및 전달방법 - Boost Serialization(1) [직렬화된 클래스 만들기] (1) | 2018.10.20 |
---|---|
Ubuntu에서 Chrome 실행할 때 마다 Keyring을 묻는 팝업창이 나타날 때 해결방법 (4) | 2018.10.19 |
Fedora Activities(현재활동) 메뉴에 프로그램 추가하기 (0) | 2018.09.12 |
Fedora에 Eclipse CDT로 C/C++ 개발환경 만들기 (0) | 2018.09.12 |
Exterior differentiation(외미분, Exterior derivative) (0) | 2018.07.25 |