ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 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.

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.

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.

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.

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

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

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.

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.