编译ros节点时未定义的引用

时间:2015-05-27 21:11:44

标签: c++ opencv g++ ros catkin

我试图编写一个使用OpenCV非自由组件(SURF)的ROS节点。我使用catkin_make编译包时遇到问题:

//usr/local/lib/libopencv_nonfree.so: undefined reference to `cv::ocl::integral(cv::ocl::oclMat const&, cv::ocl::oclMat&)'

的CMakeLists.txt

cmake_minimum_required(VERSION 2.8.3)
project(homography_test)

## Find catkin macros and libraries
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
  roscpp
  rospy
  std_msgs
  sensor_msgs
  cv_bridge
  image_transport
)

catkin_package(

)

###########
## Build ##
###########

## Specify additional locations of header files
## Your package locations should be listed before other locations
# include_directories(include)
include_directories(
    ${catkin_INCLUDE_DIRS}
    /usr/local/include
    /usr/include
    /usr/include/gstreamer-1.0
    /usr/include/glib-2.0
    /usr/lib/x86_64-linux-gnu/glib-2.0/include
)

## Declare a cpp executable
#add_executable(display_image src/display_image_node.cpp)
add_executable(homography src/sample.cpp)

## Add cmake target dependencies of the executable/library
## as an example, message headers may need to be generated before nodes
#add_dependencies(homography_test homography_test_generate_messages_cpp)

## Specify libraries to link a library or executable target against
target_link_libraries(
    homography

    ${catkin_LIBRARIES}

    gstreamer-1.0
    gobject-2.0
    glib-2.0

    opencv_nonfree
    opencv_calib3d
    opencv_contrib
    opencv_core
    opencv_features2d
    opencv_flann
    opencv_gpu
    opencv_highgui
    opencv_imgproc
    opencv_legacy
    opencv_ml
    opencv_objdetect
    opencv_ocl
    opencv_photo
    opencv_stitching
    opencv_superres
    opencv_ts
    opencv_video
    opencv_videostab
    rt
    pthread
    m
    dl
)

link_directories(/usr/local/lib)

但是,如果我手动编译相同的代码,而不是ROS节点,那么一切正常。

1 个答案:

答案 0 :(得分:2)

似乎opencv_ocl库没有正确链接。此外,通过使用CMakeLists.txt获取OpenCV配置,您可以大大简化find_package文件。尝试将这些行添加到CMakeLists.txt文件中:

find_package(OpenCV REQUIRED core ocl)
include_directories(SYSTEM ${OpenCV_INCLUDE_DIRS})
target_link_libraries(homography ${catkin_LIBRARIES} ${OpenCV_LIBRARIES} )

您需要指定要包含在find_package中的OpenCV库。我只列出了coreocl,因为ocl似乎是您所需要的,但也可能需要其他人。