Skip to content

ArghyaChatterjee/april-tag-based-autonomous-navigation-in-ros

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

landmark-based-autonomous-navigation-in-ros

Predefined Landmarks (vertical or horizontal aruco markers) will be treated as points for ROS based robots to navigate to the destination avoiding obstacles.

Overview

This package contains Python modules and scripts, and supporting level ROS nodes to perform tasks using the AprilTag fiducals as landmarks. Using the landmarks along with a camera, it is possible denote items of interest in a space. This package is built on top of the apriltag module from the interbotix_perception_modules package.

Landmarks are defined using a simple configuration file (example here). The file format is as follows:

  • landmark: - Key for the landmark. Set as the AprilTag ID it represents
    • mounted: - True if the tag that defines the landmark is mounted to a wall
      • offset: - How far from the mounted tag the robot should go to when set as the nav goal.
    • id: - AprilTag ID of the landmark
    • label: - Name given to the landmark
    • set: - Whether or not the AprilTag has been detected. False by default. Do not set this manually.

Demonstration

  • The video demonstration can be found here.

Structure

Below is a list and short description of each helper module. Over time, this list will grow to include others.

  • landmark - This file contains the Landmark and LandmarkCollection object definitions. Landmark is a module used to store data about landmarks, calculate transforms, and manage landmark pose in the world and the TF tree. The LandmarkCollection module is a higher level object that contains useful helper functions to manage the collection of landmarks.

Below if a list and short description of each helper node. Over time, this list will grow to include others.

  • landmark_manager - Presents a command line application to define landmarks. The manager requests an AprilTag ID out of the list of tags specified in the launch file, a label for the landmark, whether the tag is mounted, and the mounted offset. Once the user is finished entering landmarks, the application will close, and the landmarks will be saved to the specified file.

  • landmark_finder - Node that uses the AprilTag single_image_server_node to periodicaly take snapshots from a camera. If a landmark is detected by this node, a transform to its pose is published to the static TF tree.

  • tf_map_to_landmark - Small node that publishes a transform between a fixed frame and the origin frame (usually map) to separate the landmarks from other frames on the TF tree.

Usage

To use any module, simply include the appropriate launch file in the launch directory in you master launch file. Then make sure to include the appropriate import statement in your Python script as described above.

Launch File Arguements

Short descriptions for each launch file's arguements are below...

landmark.launch

Argument Description Default Value
apriltag_ns name-space where the AprilTag related nodes and parameters are located apriltag
camera_color_topic the absolute ROS topic name to subscribe to color images camera/color/image_raw
camera_info_topic the absolute ROS topic name to subscribe to the camera color info camera/color/camera_info
use_cam whether or not to launch the realsense2_camera package true

landmark_manager.launch

Argument Description Default Value
landmark_config location of the landmark.yaml configuration file landmarks/landmarks.yaml
fixed_frame frame that landmark TFs will be transformed to once observed landmarks
obs_frame frame from which landmarks will be observed from camera_color_optical_frame
standalone_tags individual AprilTags the algorithm should be looking for refer to landmark_manager.launch

Troubleshooting

Landmark Issues

File at <filepath> does not exist yet. No landmarks loaded.

Tried to load landmarks from a file that doesn't exist. Make sure that you're pointing to the right file and that your yaml file is properly formatted.

Future Work

  • Add special landmark labels that, when navigated to, trigger some function.
    • For example, navigating to a landmark labeled kobuki_dock triggers the auto_dock sequence.

Source

About

Predefined Landmarks (vertical or horizontal aruco markers) will be treated as points for ROS based robots to navigate to the destination avoiding obstacles.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published