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

mwildbolz's profile - activity

2013-05-05 05:28:21 -0500 received badge  Famous Question (source)
2012-11-05 02:08:09 -0500 received badge  Notable Question (source)
2012-10-21 04:10:13 -0500 received badge  Popular Question (source)
2012-10-13 22:56:03 -0500 received badge  Teacher (source)
2012-10-13 22:56:03 -0500 received badge  Self-Learner (source)
2012-10-09 22:16:40 -0500 answered a question Error compiling pcl_ros on Debian

Before a compiling pcl, the FLANN package needs to be installed from sources via

git clone https://github.com/wg-debs/flann.git
make & make install

To install PCL, the solution was to explicitely take the sources from the wg-debs archive via cloning the GIT repository

 git clone https://github.com/wg-debs/pcl.git

To get the package working, i had to switch some build parts on or off with the command

cmake ../ -DUSE_ROS=ON -DBUILD_TESTS=OFF -DBUILD_global_tests=OFF
          -DBUILD_examples=OFF -DBUILD_visualization=ON

before calling

make -j8 & make install

I also added the libraries libgtest-dev and libvtk5-dev to the yaml File i created (for the dependencies).

2012-10-04 06:42:36 -0500 asked a question Error compiling pcl_ros on Debian

Hi there!

I get an error (or lets say a huge error message) when i try to compile pcl_ros on my Debian:sqeezy.

The first error is: error: ‘__s_getMD5Sum’ is not a member of ‘pcl::PointIndices’

I installed the PCL Library with the instructions given at http://pointclouds.org/downloads/linux.html for Debian as distro.

But at the moment, I'm not sure where to look for the problem and how to solve it.

Please give me some tips...

Thanks