I am currently working with the ROS package fiducial_slam. I get the positions and orientations of the ArUco markers.
Is it possible to create a map, so that I can still see the markers in rviz, when I move my camera away? I am looking for something like this:
https://www.youtube.com/watch?time_continue=4&v=MlOy9qt_K4Y
Unfortunately the aruco_mapping package doesn't work on Kinetic Kame any more. Does it work with fiducial_slam? What parameters do I have to choose?
picture1:camera detects all markers
picture2: marker are not in camera view anymore
picture3: marker are not the same like the transformed based
Launch file:
<launch>
<node name="usb_cam" pkg="usb_cam" type="usb_cam_node">
<remap from="usb_cam/image_raw" to="camera"/>
</node>
<node name="aruco" pkg="aruco_detect" type="aruco_detect">
<param name="dictionary" type="int" value="0"/>
<param name="fiducial_len" type="double" value="0.36"/>
</node>
<arg name="publish_tf" default="true"/>
<arg name="do_pose_estimation" default="false"/>
<node type="fiducial_slam" pkg="fiducial_slam" output="screen"
name="fiducial_slam">
<param name="map_file" value="$(env HOME)/.ros/slam/map.txt" />
<param name="map_frame" value="map" />
<param name="base_frame" value="base_link" />
<param name="future_date_transforms" value="0.0" />
<param name="publish_6dof_pose" value="false" />
<param name="do_pose_estimation" value="$(arg do_pose_estimation)"/>
<param name="fiducial_len" value="0.36"/> <!-- 0.36m -->
<remap from="/camera_info" to="/camera/camera_info"/>
</node>
</launch>