No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.0
License Apache License 2.0
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/utiasasrl/vtr3.git
VCS Type git
VCS Version main
Last Updated 2025-02-12
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

VTR state estimation pipeline interface.

Additional Links

No additional links.

Maintainers

  • yuchen

Authors

No additional authors.

VT&R3 Tactic (State Estimation)

Add a new pipeline

A pipeline is used to estimate motion and build map using various sensor data. The tactic (state estimation block) in VTR is sensor, robot and algorithm agnostic. In othe words, any pipeline can be plugged into VTR for odometry, localization and mapping.

To create a new pipeline: (TODO: this section is obsolete)

  • add new header and implementation files in include and src.
  • use the TemplatePipeline as a starting point to create the class of your pipeline.
  • customize your pipeline to do the work following the instructions in TemplatePipeline.
  • add the header file to pipelines.hpp.
  • append the pipeline class to the type_switch_ container in PipelineFactory.
  • if your pipeline needs to cache any intermediate data, such as image features or landmarks, put them in QueryCache. Take a look at the source code of this class and the stereo pipeline to see how it works.
  • use modules to structure your pipeline and properly balance computation across data preprocessing, odometry and mapping, and localization. Note that data preprocessing. odometry and mapping, and localization are by default run in parallel. Feel free to use extra threads inside the pipeline to perform expensive operations such as keyframe optimization or data saving.
  • create unit tests for your pipeline.

Add a new module

A module is a processing unit that should be created and called from a pipeline.

Suppose that you want to create a new module for the lidar pipeline

  • Use the TemplateModule as a starting point to create the class of your module and put it inside the corresponding namespace, i.e. lidar.
  • Copy TemplateModule header into the desired directory and rename it: vtr_lidar/include/modules/<module name>.hpp. Also create its implementation file (<module name>.cpp) in the respective directory: vtr_lidar/src/modules/<module name>.cpp
  • Change function templates in the copied TemplateModule.
  • Add directory of the header file to vtr_lidar/include/modules/modules.hpp for convenience.
  • Register the new module in lidar pipline vtr_lidar/src/pipeline.cpp: LidarPipeline::addModules().
  • If possible, create unit-tests for your module. Greatly appreciated.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged vtr_tactic at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.