Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros2 |
Last Updated | 2024-10-12 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_map_server | 2.2.1 |
mrpt_msgs_bridge | 2.2.1 |
mrpt_nav_interfaces | 2.2.1 |
mrpt_navigation | 2.2.1 |
mrpt_pf_localization | 2.2.1 |
mrpt_pointcloud_pipeline | 2.2.1 |
mrpt_rawlog | 2.2.1 |
mrpt_reactivenav2d | 2.2.1 |
mrpt_tps_astar_planner | 2.2.1 |
mrpt_tutorials | 2.2.1 |
README
Distro | Build dev | Stable sync |
---|---|---|
ROS 2 Humble (u22.04) | ||
ROS 2 Iron (u22.04) | ||
ROS 2 Jazzy (u24.04) | ||
ROS 2 Rolling (u24.04) |
mrpt_navigation
This repository provides packages that wrap functionality in the Mobile Robot Programming Toolkit (MRPT) related to localization and navigation. MRPT SLAM and sensor access are wrapped into other ROS repositories.
The latest SLAM framework, whose maps are compatible with this repository for localization, is MOLA.
Documentation for each package
All packages follow REP-2003 regarding ROS 2 topic QoS.
Related to localization:
- mrpt_map_server: A node that loads a ROS standard gridmap or an MRPT or MP2P_ICP map and publishes it to a (set of) topic(s).
- mrpt_pf_localization: A node for particle filter-based localization of a robot from any kind of metric map (gridmap, points, range-only sensors, …).
Related to sensor pipelines:
-
mrpt_pointcloud_pipeline: A node that maintains a local obstacle map from recent sensor readings, including optional point cloud pipeline filtering or processing. For example,
- For 3D LIDARs, to filter by a volume or area, downsample the number of points, etc.
- For 2D laser scanners, to keep a memory of obstacles that get out of the sensor field of view.
Related to autonomous navigation:
- mrpt_reactivenav2d: A pure reactive navigator for polygonal robots on 2D worlds.
- mrpt_tps_astar_planner: A path planner based on PTG trajectories using A* in a SE(2) lattice.
Others:
- mrpt_rawlog: Nodes and CLI tools to convert between MRPT rawlog format and ROS rosbag2.
- mrpt_tutorials: Launch and configuration files for the various examples provided for the other packages.
- mrpt_msgs_bridge: C++ library to convert between custom mrpt_msgs messages and native MRPT classes
- mrpt_nav_interfaces: Definition of msgs, srvs, and actions used by the other packages.
General documentation
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros2
: The most recent, active branch for modern ROS 2 distributions. -
ros1
: Intended for ROS 1. No further development will happen there.
-
Individual package build status
Contributing
-
Code formatting: We use clang-format to ensure formatting consistency in the code base. Set up your IDE to automatically use clang-format-11, use
git clang-format-11
, or invoke it manually from the root directory as:find . -iname *.hpp -o -iname *.cpp -o -iname *.h | xargs clang-format-11 -i
Contributors
CONTRIBUTING
Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros2 |
Last Updated | 2024-10-12 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_map_server | 2.2.1 |
mrpt_msgs_bridge | 2.2.1 |
mrpt_nav_interfaces | 2.2.1 |
mrpt_navigation | 2.2.1 |
mrpt_pf_localization | 2.2.1 |
mrpt_pointcloud_pipeline | 2.2.1 |
mrpt_rawlog | 2.2.1 |
mrpt_reactivenav2d | 2.2.1 |
mrpt_tps_astar_planner | 2.2.1 |
mrpt_tutorials | 2.2.1 |
README
Distro | Build dev | Stable sync |
---|---|---|
ROS 2 Humble (u22.04) | ||
ROS 2 Iron (u22.04) | ||
ROS 2 Jazzy (u24.04) | ||
ROS 2 Rolling (u24.04) |
mrpt_navigation
This repository provides packages that wrap functionality in the Mobile Robot Programming Toolkit (MRPT) related to localization and navigation. MRPT SLAM and sensor access are wrapped into other ROS repositories.
The latest SLAM framework, whose maps are compatible with this repository for localization, is MOLA.
Documentation for each package
All packages follow REP-2003 regarding ROS 2 topic QoS.
Related to localization:
- mrpt_map_server: A node that loads a ROS standard gridmap or an MRPT or MP2P_ICP map and publishes it to a (set of) topic(s).
- mrpt_pf_localization: A node for particle filter-based localization of a robot from any kind of metric map (gridmap, points, range-only sensors, …).
Related to sensor pipelines:
-
mrpt_pointcloud_pipeline: A node that maintains a local obstacle map from recent sensor readings, including optional point cloud pipeline filtering or processing. For example,
- For 3D LIDARs, to filter by a volume or area, downsample the number of points, etc.
- For 2D laser scanners, to keep a memory of obstacles that get out of the sensor field of view.
Related to autonomous navigation:
- mrpt_reactivenav2d: A pure reactive navigator for polygonal robots on 2D worlds.
- mrpt_tps_astar_planner: A path planner based on PTG trajectories using A* in a SE(2) lattice.
Others:
- mrpt_rawlog: Nodes and CLI tools to convert between MRPT rawlog format and ROS rosbag2.
- mrpt_tutorials: Launch and configuration files for the various examples provided for the other packages.
- mrpt_msgs_bridge: C++ library to convert between custom mrpt_msgs messages and native MRPT classes
- mrpt_nav_interfaces: Definition of msgs, srvs, and actions used by the other packages.
General documentation
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros2
: The most recent, active branch for modern ROS 2 distributions. -
ros1
: Intended for ROS 1. No further development will happen there.
-
Individual package build status
Contributing
-
Code formatting: We use clang-format to ensure formatting consistency in the code base. Set up your IDE to automatically use clang-format-11, use
git clang-format-11
, or invoke it manually from the root directory as:find . -iname *.hpp -o -iname *.cpp -o -iname *.h | xargs clang-format-11 -i
Contributors
CONTRIBUTING
Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros2 |
Last Updated | 2024-10-12 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_map_server | 2.2.1 |
mrpt_msgs_bridge | 2.2.1 |
mrpt_nav_interfaces | 2.2.1 |
mrpt_navigation | 2.2.1 |
mrpt_pf_localization | 2.2.1 |
mrpt_pointcloud_pipeline | 2.2.1 |
mrpt_rawlog | 2.2.1 |
mrpt_reactivenav2d | 2.2.1 |
mrpt_tps_astar_planner | 2.2.1 |
mrpt_tutorials | 2.2.1 |
README
Distro | Build dev | Stable sync |
---|---|---|
ROS 2 Humble (u22.04) | ||
ROS 2 Iron (u22.04) | ||
ROS 2 Jazzy (u24.04) | ||
ROS 2 Rolling (u24.04) |
mrpt_navigation
This repository provides packages that wrap functionality in the Mobile Robot Programming Toolkit (MRPT) related to localization and navigation. MRPT SLAM and sensor access are wrapped into other ROS repositories.
The latest SLAM framework, whose maps are compatible with this repository for localization, is MOLA.
Documentation for each package
All packages follow REP-2003 regarding ROS 2 topic QoS.
Related to localization:
- mrpt_map_server: A node that loads a ROS standard gridmap or an MRPT or MP2P_ICP map and publishes it to a (set of) topic(s).
- mrpt_pf_localization: A node for particle filter-based localization of a robot from any kind of metric map (gridmap, points, range-only sensors, …).
Related to sensor pipelines:
-
mrpt_pointcloud_pipeline: A node that maintains a local obstacle map from recent sensor readings, including optional point cloud pipeline filtering or processing. For example,
- For 3D LIDARs, to filter by a volume or area, downsample the number of points, etc.
- For 2D laser scanners, to keep a memory of obstacles that get out of the sensor field of view.
Related to autonomous navigation:
- mrpt_reactivenav2d: A pure reactive navigator for polygonal robots on 2D worlds.
- mrpt_tps_astar_planner: A path planner based on PTG trajectories using A* in a SE(2) lattice.
Others:
- mrpt_rawlog: Nodes and CLI tools to convert between MRPT rawlog format and ROS rosbag2.
- mrpt_tutorials: Launch and configuration files for the various examples provided for the other packages.
- mrpt_msgs_bridge: C++ library to convert between custom mrpt_msgs messages and native MRPT classes
- mrpt_nav_interfaces: Definition of msgs, srvs, and actions used by the other packages.
General documentation
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros2
: The most recent, active branch for modern ROS 2 distributions. -
ros1
: Intended for ROS 1. No further development will happen there.
-
Individual package build status
Contributing
-
Code formatting: We use clang-format to ensure formatting consistency in the code base. Set up your IDE to automatically use clang-format-11, use
git clang-format-11
, or invoke it manually from the root directory as:find . -iname *.hpp -o -iname *.cpp -o -iname *.h | xargs clang-format-11 -i
Contributors
CONTRIBUTING
Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros2 |
Last Updated | 2024-10-12 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_map_server | 2.2.1 |
mrpt_msgs_bridge | 2.2.1 |
mrpt_nav_interfaces | 2.2.1 |
mrpt_navigation | 2.2.1 |
mrpt_pf_localization | 2.2.1 |
mrpt_pointcloud_pipeline | 2.2.1 |
mrpt_rawlog | 2.2.1 |
mrpt_reactivenav2d | 2.2.1 |
mrpt_tps_astar_planner | 2.2.1 |
mrpt_tutorials | 2.2.1 |
README
Distro | Build dev | Stable sync |
---|---|---|
ROS 2 Humble (u22.04) | ||
ROS 2 Iron (u22.04) | ||
ROS 2 Jazzy (u24.04) | ||
ROS 2 Rolling (u24.04) |
mrpt_navigation
This repository provides packages that wrap functionality in the Mobile Robot Programming Toolkit (MRPT) related to localization and navigation. MRPT SLAM and sensor access are wrapped into other ROS repositories.
The latest SLAM framework, whose maps are compatible with this repository for localization, is MOLA.
Documentation for each package
All packages follow REP-2003 regarding ROS 2 topic QoS.
Related to localization:
- mrpt_map_server: A node that loads a ROS standard gridmap or an MRPT or MP2P_ICP map and publishes it to a (set of) topic(s).
- mrpt_pf_localization: A node for particle filter-based localization of a robot from any kind of metric map (gridmap, points, range-only sensors, …).
Related to sensor pipelines:
-
mrpt_pointcloud_pipeline: A node that maintains a local obstacle map from recent sensor readings, including optional point cloud pipeline filtering or processing. For example,
- For 3D LIDARs, to filter by a volume or area, downsample the number of points, etc.
- For 2D laser scanners, to keep a memory of obstacles that get out of the sensor field of view.
Related to autonomous navigation:
- mrpt_reactivenav2d: A pure reactive navigator for polygonal robots on 2D worlds.
- mrpt_tps_astar_planner: A path planner based on PTG trajectories using A* in a SE(2) lattice.
Others:
- mrpt_rawlog: Nodes and CLI tools to convert between MRPT rawlog format and ROS rosbag2.
- mrpt_tutorials: Launch and configuration files for the various examples provided for the other packages.
- mrpt_msgs_bridge: C++ library to convert between custom mrpt_msgs messages and native MRPT classes
- mrpt_nav_interfaces: Definition of msgs, srvs, and actions used by the other packages.
General documentation
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros2
: The most recent, active branch for modern ROS 2 distributions. -
ros1
: Intended for ROS 1. No further development will happen there.
-
Individual package build status
Contributing
-
Code formatting: We use clang-format to ensure formatting consistency in the code base. Set up your IDE to automatically use clang-format-11, use
git clang-format-11
, or invoke it manually from the root directory as:find . -iname *.hpp -o -iname *.cpp -o -iname *.h | xargs clang-format-11 -i
Contributors
CONTRIBUTING
Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros1 |
Last Updated | 2024-09-17 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_local_obstacles | 1.0.7 |
mrpt_localization | 1.0.7 |
mrpt_map | 1.0.7 |
mrpt_msgs_bridge | 1.0.7 |
mrpt_navigation | 1.0.7 |
mrpt_rawlog | 1.0.7 |
mrpt_reactivenav2d | 1.0.7 |
mrpt_tutorials | 1.0.7 |
README
Distro | Build dev | Build release | Stable sync |
---|---|---|---|
ROS1 Noetic (u20.04) |
mrpt_navigation
This repository provides packages and tools related to the Mobile Robot Programming Toolkit (MRPT).
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros1
: Intended for use with latest MRPT versions (>=2.0.x) and ROS1. -
compat-mrpt-1.3
: DEPRECATED. Stall branch, archived for backwards compatibility with MRPT versions 1.3.x or older.
-
Demo videos
- Localization with particle filters:
CONTRIBUTING
Repository Summary
Checkout URI | https://github.com/mrpt-ros-pkg/mrpt_navigation.git |
VCS Type | git |
VCS Version | ros1 |
Last Updated | 2024-09-17 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
mrpt_local_obstacles | 1.0.7 |
mrpt_localization | 1.0.7 |
mrpt_map | 1.0.7 |
mrpt_msgs_bridge | 1.0.7 |
mrpt_navigation | 1.0.7 |
mrpt_rawlog | 1.0.7 |
mrpt_reactivenav2d | 1.0.7 |
mrpt_tutorials | 1.0.7 |
README
Distro | Build dev | Build release | Stable sync |
---|---|---|---|
ROS1 Noetic (u20.04) |
mrpt_navigation
This repository provides packages and tools related to the Mobile Robot Programming Toolkit (MRPT).
- ROS wiki: http://wiki.ros.org/mrpt_navigation
- Compiling instructions: http://wiki.ros.org/mrpt_navigation/Tutorials/Installing
- Usage examples and tutorials: http://wiki.ros.org/mrpt_navigation/Tutorials
- Branches:
-
ros1
: Intended for use with latest MRPT versions (>=2.0.x) and ROS1. -
compat-mrpt-1.3
: DEPRECATED. Stall branch, archived for backwards compatibility with MRPT versions 1.3.x or older.
-
Demo videos
- Localization with particle filters: