ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I have done fhe following steps and could manage to solve the issue, but not sure if all were needed at all:
Add the following lines before the find_package() in the CMakeLists.txt:
set(OpenCV_DIR /opt/opencv/release/) set(OpenCV_INCLUDE_DIRS /opt/opencv/release/include) set(OpenCV_LIBS opencv_core opencv_highgui opencv_imgproc opencv_imgcodecs opencv_calib3d)
Then, I could manage to compile again by using catkin_make
.
2 | No.2 Revision |
I have done fhe following steps and could manage to solve the issue, but not sure if all were needed at all:
Add the following lines before the find_package() in the CMakeLists.txt:
set(OpenCV_DIR /opt/opencv/release/)
/opt/opencv/release/)
set(OpenCV_INCLUDE_DIRS /opt/opencv/release/include)
/opt/opencv/release/include)
set(OpenCV_LIBS opencv_core opencv_highgui opencv_imgproc opencv_imgcodecs opencv_calib3d)
Then, I could manage to compile again by using catkin_make
.
3 | No.3 Revision |
I have done fhe following steps and could manage to solve the issue, but not sure if all were needed at all:
-set(OpenCV_DIR /opt/opencv/release/)
.
set(OpenCV_DIR /opt/opencv/release/)-set(OpenCV_INCLUDE_DIRS /opt/opencv/release/include)
.
set(OpenCV_INCLUDE_DIRS /opt/opencv/release/include)
-set(OpenCV_LIBS opencv_core opencv_highgui opencv_imgproc opencv_imgcodecs opencv_calib3d).
Then, I could manage to compile again by using catkin_make
.