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

Missing FilterConfig.h for pcl_ros in Groovy

asked 2013-09-20 01:37:31 -0500

teddybouch gravatar image

Using the instructions at http://wiki.ros.org/groovy/Installation/Source, I am installing ROS on openSUSE 12.3, but I'm running into a snag when it builds the pcl_ros package:

-- Configuring done
-- Generating done
-- Build files have been written to: /home/abouchard/catkin_ws/build_isolated/pcl_ros
==> make -j2 -l2 in '/home/abouchard/catkin_ws/build_isolated/pcl_ros'
Scanning dependencies of target convert_pcd_to_image
Scanning dependencies of target pcl_ros_tf
[  9%] [  9%] Building CXX object CMakeFiles/pcl_ros_tf.dir/src/transforms.cpp.o
Building CXX object CMakeFiles/convert_pcd_to_image.dir/tools/convert_pcd_to_image.cpp.o
Linking CXX executable /home/abouchard/catkin_ws/devel_isolated/pcl_ros/lib/pcl_ros/convert_pcd_to_image
[  9%] Built target convert_pcd_to_image
Scanning dependencies of target convert_pointcloud_to_image
[ 13%] Building CXX object CMakeFiles/convert_pointcloud_to_image.dir/tools/convert_pointcloud_to_image.cpp.o
Linking CXX shared library /home/abouchard/catkin_ws/devel_isolated/pcl_ros/lib/libpcl_ros_tf.so
[ 13%] Built target pcl_ros_tf
Scanning dependencies of target pcd_to_pointcloud
Linking CXX executable /home/abouchard/catkin_ws/devel_isolated/pcl_ros/lib/pcl_ros/convert_pointcloud_to_image
[ 18%] Building CXX object CMakeFiles/pcd_to_pointcloud.dir/tools/pcd_to_pointcloud.cpp.o
[ 18%] Built target convert_pointcloud_to_image
Scanning dependencies of target pcl_ros_filters
[ 22%] Building CXX object CMakeFiles/pcl_ros_filters.dir/src/pcl_ros/filters/filter.cpp.o
In file included from /home/abouchard/catkin_ws/src/pcl_ros/src/pcl_ros/filters/filter.cpp:40:0:
/home/abouchard/catkin_ws/src/pcl_ros/include/pcl_ros/filters/filter.h:47:34: fatal error: pcl_ros/FilterConfig.h: No such file or directory
compilation terminated.
make[2]: *** [CMakeFiles/pcl_ros_filters.dir/src/pcl_ros/filters/filter.cpp.o] Error 1
make[1]: *** [CMakeFiles/pcl_ros_filters.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
Linking CXX executable /home/abouchard/catkin_ws/devel_isolated/pcl_ros/lib/pcl_ros/pcd_to_pointcloud
[ 22%] Built target pcd_to_pointcloud
make: *** [all] Error 2
<== Failed to process package 'pcl_ros': 
  Command '/home/abouchard/catkin_ws/install_isolated/env.sh make -j2 -l2' returned non-zero exit status 2

Reproduce this error by running:
==> cd /home/abouchard/catkin_ws/build_isolated/pcl_ros && /home/abouchard/catkin_ws/install_isolated/env.sh make -j2 -l2

Command failed, exiting.

I looked at filters.h, and it does have an include statement for FilterConfig.h, and it appears that there are several calls to functions in that namespace. I've found versions of the file online, but they appear to be rather dated, and I'm hesitant to just throw a file in there that might allow it to compile but will cause more problems when I try to use it that will make it harder to debug. In any case, the download probably needs to be reconfigured so that this file is included. Is there anyone here with insight into this package that might be able to offer some advice?

edit retag flag offensive close merge delete

Comments

This file should be created because of cfg/Filter.cfg.

MichaelKorn gravatar image MichaelKorn  ( 2013-09-20 02:06:14 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-09-20 03:39:49 -0500

this post is marked as community wiki

This post is a wiki. Anyone with karma >75 is welcome to improve it.

change in pcl_ros/CMakeLists.txt the Line

add_dependencies(pcl_ros_tf pcl_ros_generate_messages_cpp {catkin_EXPORTED_TARGETS})

to

add_dependencies(pcl_ros_tf pcl_ros_generate_messages_cpp {catkin_EXPORTED_TARGETS} ${PROJECT_NAME}_gencfg)
edit flag offensive delete link more

Comments

Thanks! The only add_dependencies line that I had was: add_dependencies(pcl_ros_tf ros_gencpp pcl_ros_copy) Regardless of the difference, I replaced it with the line you recommended and the package seems to have built successfully!

teddybouch gravatar image teddybouch  ( 2013-09-20 06:20:19 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2013-09-20 01:37:31 -0500

Seen: 258 times

Last updated: Sep 20 '13