tacman-fp7 / handover

This module implements Task 4.4, to transfer an object from one hand to the other. It first localised the object in the robots hand. Then, the robot selects a pose for the second hand in which the object can be successfully transferred. The second hand grasps the object. Once a stable grasp is achieved, the first hand releases the object.
GNU General Public License v3.0
2 stars 1 forks source link

automatic selection of point cloud, considering blob dimension and changing robot pose #30

Open giuliavezzani opened 7 years ago

giuliavezzani commented 7 years ago

This is to find an automatic way for selecting the initial pose of the first arm, considering the quality of the blob

giuliavezzani commented 7 years ago

In order to make point cloud acquisition and filtering automatic, I implemented this approach (to be tested on the robot):

while (blob.size()<min_blob_size)
{
       goToNextPose()
       acquirePoints()
}

 filterPoints()
giuliavezzani commented 7 years ago

The method has been successful tested on the robot (see #28) and a set of initial poses for left arm as first arm have been selected. New tested can be executed for improving this set.