ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn/
Try to export OpenCV_DIR
to your local installation of OpenCV.
2 | No.2 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn/http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn
Try to export OpenCV_DIR
to your local installation of OpenCV.
3 | No.3 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn
Try to export OpenCV_DIR
to your local installation of OpenCV.OpenCV. More details are available in the answer to this similar question.
4 | No.4 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn
Try to export OpenCV_DIR
to your local installation of OpenCV. More details are available in the answer to this similar question.question and in the documentation of find_package.
5 | No.5 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn
Try to export OpenCV_DIR
to your local installation of OpenCV. More details are available in the answer to this similar question and in the documentation of find_package.
For the runtime error, update your LD_LIBRARY_PATH
accordingly, i.e. something like:
export LD_LIBRARY_PATH=/path/to/opencv/lib:$LD_LIBRARY_PATH
6 | No.6 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn
Try to export OpenCV_DIR
to your local installation of OpenCV. More details are available in the answer to this similar question and in the documentation of find_package.
For the runtime error, having both installed can lead to clashes between libraries. You can try to update your LD_LIBRARY_PATH
accordingly, i.e. something like:
export LD_LIBRARY_PATH=/path/to/opencv/lib:$LD_LIBRARY_PATH
7 | No.7 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svnhttp://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn or even this one http://answers.ros.org/question/47249/problem-with-using-opencv_gpu-inside-ros
Try to export OpenCV_DIR
to your local installation of OpenCV. More details are available in the answer to this the first similar question and in the documentation of find_package.
For the runtime error, having both installed can lead to clashes between libraries. You can try to update your LD_LIBRARY_PATH
accordingly, i.e. something like:
export LD_LIBRARY_PATH=/path/to/opencv/lib:$LD_LIBRARY_PATH
If you just need OpenCV with CUDA support for ROS, you can recompile the package with CUDA support activated.
8 | No.8 Revision |
You have a problem similar to this one: http://answers.ros.org/question/32284/cmakelist-find_package-opencv-svn or even this one http://answers.ros.org/question/47249/problem-with-using-opencv_gpu-inside-ros
Try to export OpenCV_DIR
to your local installation of OpenCV. More details are available in the answer to the first similar question and in the documentation of find_package.
For the runtime error, having Having both OpenCV versions installed can lead to clashes between libraries. You can try to update your LD_LIBRARY_PATH
/PKG_CONFIG_PATH
(if the scripts rely on pkg-config) accordingly, i.e. something like:
export LD_LIBRARY_PATH=/path/to/opencv/lib:$LD_LIBRARY_PATH
LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
You may also need to set CMAKE_LIBRARY_PATH="/usr/local/lib"
for CMake.
If you just need OpenCV with CUDA support for ROS, you can recompile the package with CUDA support activated.