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

It caused by conflict between opencv2 and opencv2. You should find the following script in your package CMakeFile.txt:

find_package(OpenCV REQUIRED)

Replace it with

find_package(OpenCV 2 REQUIRED)

I worked whole day to find the solution