CLion is A Cross-Platform IDE for C and C++ by JetBrains
Setting OpenCV in CLion is so easy.
FIrst, make new c++ project.
Second, edit CmakeList.txt
cmake_minimum_required(VERSION 3.10) project([YourProject]) set(CMAKE_CXX_STANDARD 11) find_package(OpenCV REQUIRED ) add_executable([YourProject] main.cpp) target_link_libraries([YourProject] ${OpenCV_LIBS})
At Last include OpenCV to main.cpp
#include <iostream> #include "opencv2/opencv.hpp" using namespace std; using namespace cv;
...
Comments
Post a Comment