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

OpenCV is a system package in Indigo; not a ROS package.

According to the vision_opencv docs, you should have a build_depend and a run_depend on opencv2, and you should add the following to your cmakelists:

find_package(OpenCV)
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries(my_awesome_library ${OpenCV_LIBRARIES})

OpenCV is a system package in Indigo; not a ROS package.

According to the vision_opencv docs, you should have a build_depend and a run_depend on opencv2, opencv2 in your package.xml, and you should add the following to your cmakelists:

find_package(OpenCV)
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries(my_awesome_library ${OpenCV_LIBRARIES})

OpenCV is a system package in Indigo; not a ROS package.

According to the vision_opencv docs, you should have a build_depend and a run_depend on opencv2 in your package.xml, and you should add the following to your cmakelists:

find_package(OpenCV)
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries(my_awesome_library ${OpenCV_LIBRARIES})

OpenCV is a system package in Indigo; Hydro; not a ROS package.

According to the vision_opencv docs, you should have a build_depend and a run_depend on opencv2 in your package.xml, and you should add the following to your cmakelists:

find_package(OpenCV)
include_directories(${OpenCV_INCLUDE_DIRS})
target_link_libraries(my_awesome_library ${OpenCV_LIBRARIES})