No version for distro humble showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro jazzy showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro kilted showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro rolling showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro galactic showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro iron showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro melodic showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange

No version for distro noetic showing github. Known supported distros are highlighted in the buttons above.
Package symbol

ros2_orbslam3 package from ros2_orbslam3 repo

ros2_orbslam3

ROS Distro
github

Package Summary

Tags No category tags.
Version 0.0.1
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Description A primary, extremely simple package linking orbslam3 and ros2
Checkout URI https://github.com/curryc/ros2_orbslam3.git
VCS Type git
VCS Version master
Last Updated 2022-02-22
Dev Status UNKNOWN
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

ROS 2 wrapper for the ORB_SLAM3 library

Additional Links

No additional links.

Maintainers

  • Alberto Soragna # curry chen

Authors

  • Alberto Soragna # curry chen

ros2-ORB_SLAM3

ROS2 node wrapping the ORB_SLAM3 library

modified according to Alsora

Requirements

Note: The vision_opencv package requires OpenCV3. Make sure to build ORB_SLAM3 with the same OpenCV version otherwise strange run errors could appear.

The message_filters package is not required if you want to use only the Monocular SLAM node.

Build

If you built ORB_SLAM3 following the instructions provided in its repository, you will have to tell CMake where to find it by exporting an environment variable that points to the cloned repository (as the library and include files will be in there).

$ set(ORB_SLAM3_ROOT_DIR "/path/to/ORB_SLAM3")

Then you can build this package

$ mkdir -p ws/src
$ cd ws/src
$ git clone https://github.com/curryc/ros2_orbslam3.git
$ cd ..
$ colcon build

Issues

If cannot find sophus/se3.hpp:

$ git clone https://github.com/strasdat/Sophus.git
$ mkdir build
& cd build
& cmake ..
& make
& sudo make install

If cannot find libORB_SLAM3.so:

& vim ~/.bashrc  

Then add the following instruction to export the file:

& export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW2/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Usage

First source the workspace

$ source ws/install/setup.sh

Then add to the LD_LIBRARY_PATH the location of ORB_SLAM3 library and its dependencies (the following paths may be different on your machine)

$ export LD_LIBRARY_PATH=~/Pangolin/build/src/:~/ORB_SLAM3/Thirdparty/DBoW3/lib:~/ORB_SLAM3/Thirdparty/g2o/lib:~/ORB_SLAM3/lib:$LD_LIBRARY_PATH

Run the monocular SLAM node

$ ros2 run ros2_orbslam mono PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can find the vocabulary file in the ORB_SLAM3 repository (e.g. ORB_SLAM3/Vocabulary/ORBvoc.txt), while the config file can be found within this repo (e.g. ros2-ORB_SLAM3/src/monocular/TUM1.yaml for monocular SLAM).

This node subscribes to the ROS2 topic camera and waits for Image messages. For example you can stream frames from your laptop webcam using:

$ ros2 run image_tools cam2image -t camera

The other nodes can be run in a very similar way.

You can run the rgbd node by using

$ ros2 run ros2_orbslam rgbd PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE

You can run the stereo node by using

$ ros2 run ros2_orbslam stereo PATH_TO_VOCABULARY PATH_TO_YAML_CONFIG_FILE BOOL_RECTIFY
CHANGELOG
No CHANGELOG found.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ros2_orbslam3 at Robotics Stack Exchange