help installing pcl on ROS Indigo
I'm currently trying to install the point cloud library so I can use it's RANSAC features for sphere detection.
There seem to be lots of tutorials about using the PCL with ros but I can't find anything about how to install it. I've been following the answer to this ros answer:
http://answers.ros.org/question/20151...
I've added the dependency to my package.xml file so it now looks like this
<?xml version="1.0"?>
<package>
<name>sme_awareness</name>
<version>0.0.1</version>
<description>Package of Lidar and Camera awareness tools</description>
<maintainer email="pete.blacker@gmail.com">pete blacker</maintainer>
<license>TODO</license>
<url type="website">http://www.PeteBlacker.com</url>
<author email="pete.blacker@gmail.com">pete blacker</author>
<build_depend>message_generation</build_depend>
<run_depend>message_runtime</run_depend>
<!-- Use test_depend for packages you need only for testing: -->
<buildtool_depend>catkin</buildtool_depend>
<build_depend version_gte="1.7.0">pcl</build_depend>
<build_depend>libpcl-all-dev</build_depend>
<build_depend>roscpp</build_depend>
<build_depend>rospy</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>sensor_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>tf</build_depend>
<build_depend>tf2</build_depend>
<build_depend>tf2_ros</build_depend>
<build_depend>image_transport</build_depend>
<build_depend>cv_bridge</build_depend>
<build_depend>dp_ptu47_msgs</build_depend>
<run_depend version_gte="1.7.0">pcl</run_depend>
<run_depend>libpcl-all-dev</run_depend>
<run_depend>roscpp</run_depend>
<run_depend>rospy</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>sensor_msgs</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>tf</run_depend>
<run_depend>tf2</run_depend>
<run_depend>tf2_ros</run_depend>
<run_depend>image_transport</run_depend>
<run_depend>cv_bridge</run_depend>
<run_depend>dp_ptu47_msgs</run_depend>
<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- Other tools can request additional information be placed here -->
</export>
</package>
However when I execute the command:
rosdep install --from-paths src --ignore-src --rosdistro indigo -y
I get the error:
ERROR: the following packages/stacks could not have their rosdep keys resolved
to system dependencies:
sme_awareness: Cannot locate rosdep definition for [pcl]
Can anyone help me get this up and running? Thanks.