Vector field histogram.
Any of you have used vector field histogram?I am trying to combine the Kinect and the vector field histogram but not sure how to do it. Any help would be appreciated.
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Any of you have used vector field histogram?I am trying to combine the Kinect and the vector field histogram but not sure how to do it. Any help would be appreciated.
VFH has been designed to work with planar sensors, like a laser or a sonar. If you really want to use it with a Kinect, you need to project all the points on a plane which is parallel to the robot base (more or less where a laser would be) and then treat this points as laser readings. This could be as easy as removing the z component of the points if the robot does not tilt (most indoor robots don't). If you really want to mimic the laser input to the vfh you can calculate for each point:
range = sqrt(x^2 + y^2)
angle = atan2(y,x)
and that is the closest you can get to a laser. Beware that you might need to filter the Kinect pointcloud as it can be very noisy.
Asked: 2011-06-05 14:43:20 -0600
Seen: 1,170 times
Last updated: Jun 07 '11
VSLAM based navigation with Kinect, where do I begin?
Problems with python when trying to control a Nao robot with a Kinect
Problem pertaining to DepthGenerator
How to add Kinect sensor input to a URDF model?
How do I change the resolution of the kinect? [closed]
What effect does calibrating the Kinect have?