Best way to add information to map

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Best way to add information to map

JadTawil
Hello,

Along with rtab-map, i am using classifier that operates on the rgb images from another camera on the robot. I ofcourse know the transform between the camera frame and the stereo camera (that i use for rtabmap) frame.

The classifier is trained to detect certain objects. Once those objects are detected, i would like to translate the points corresponding to those object from the camera's frame, to the stereo-camera frame, for inclusion in the map.

Once i compute those transforms, how do you think i should encode the class-name (or id or w.e) into the global map constructed by rtabmap.

The intention is to treat those objects with a gripper in an outdoor setting.
Reply | Threaded
Open this post in threaded view
|

Re: Best way to add information to map

matlabbe
Administrator
This post was updated on .
Hi,

You could project the stereo point cloud into the camera using pointcloud_to_depthimage nodelet:
  <node name="pointcloud_to_depthimage" pkg="rtabmap_ros" type="pointcloud_to_depthimage">
    <remap from="cloud"            to="/camera_stereo/points"/>
    <remap from="image"            to="/camera/registered_depth"/>
    <remap from="camera_info"      to="/camera/camera_info"/>
   
    <param name="fixed_frame_id"   type="string"   value="odom"/>
  </node>

You will then have a depth image registered to your mono camera. You may find object position accordingly to robot knowing the depth value corresponding to pixels of the object, similarly to 3d position example of find_object_2d package.

To label point cloud of the map, there is no built-in way to do that. However, you could save the segmented point cloud like how the objects are saved in the map in this example (see this for more info about this example).

cheers,
Mathieu