![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |
Launch files
Messages
Services
Plugins
Recent questions tagged stella_vslam at Robotics Stack Exchange
![]() |
stella_vslam package from stella_vslam repostella_vslam |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.6.0 |
License | 2-clause BSD |
Build type | CMAKE |
Use | RECOMMENDED |
Repository Summary
Description | This is a unofficial fork of OpenVSLAM (https://github.com/xdspacelab/openvslam) |
Checkout URI | https://github.com/stella-cv/stella_vslam.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-07-07 |
Dev Status | UNKNOWN |
Released | UNRELEASED |
Tags | visual-slam |
Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Additional Links
Maintainers
- ymd-stella
Authors
- Shinya Sumikura
- Mikiya Shibuya
- Ken Sakurada
- ymd-stella
stella_vslam
NOTE: This is a community fork of xdspacelab/openvslam. It was created to continue active development of OpenVSLAM on Jan 31, 2021. The original repository is no longer available. Please read the official statement of termination carefully and understand it before using this. The similarities with ORB_SLAM2 in the original version have been removed by #252. If you find any other issues with the license, please point them out. See #37 and #249 for discussion so far.
Versions earlier than 0.3 are deprecated. If you use them, please use them as a derivative of ORB_SLAM2 under the GPL license.
Overview
stella_vslam is a monocular, stereo, and RGBD visual SLAM system.
Features
The notable features are:
- It is compatible with various type of camera models and can be easily customized for other camera models.
- Created maps can be stored and loaded, then stella_vslam can localize new images based on the prebuilt maps.
- The system is fully modular. It is designed by encapsulating several functions in separated components with easy-to-understand APIs.
- We provided some code snippets to understand the core functionalities of this system.
One of the noteworthy features of stella_vslam is that the system can deal with various type of camera models, such as perspective, fisheye, and equirectangular. If needed, users can implement extra camera models (e.g. dual fisheye, catadioptric) with ease. For example, visual SLAM algorithm using equirectangular camera models (e.g. RICOH THETA series, insta360 series, etc) is shown above.
We provided documentation for installation and tutorial. The repository for the ROS wrapper is stella_vslam_ros.
Acknowledgements
OpenVSLAM is based on an indirect SLAM algorithm with sparse features, such as ORB-SLAM/ORB-SLAM2, ProSLAM, and UcoSLAM. The core architecture is based on ORB-SLAM/ORB-SLAM2 and the code has been redesigned and written from scratch to improve scalability, readability, performance, etc. UcoSLAM has implemented the parallelization of feature extraction, map storage and loading earlier. ProSLAM has implemented a highly modular and easily understood system earlier.
Examples
Some code snippets to understand the core functionalities of the system are provided.
You can employ these snippets for in your own programs.
Please see the *.cc
files in ./example
directory or check Simple Tutorial and Example.
Installation
Please see Installation chapter in the documentation.
The instructions for Docker users are also provided.
Tutorial
Please see Simple Tutorial chapter in the documentation.
A sample ORB vocabulary file can be downloaded from here. Sample datasets are also provided at here.
If you would like to run visual SLAM with standard benchmarking datasets (e.g. KITTI Odometry dataset), please see SLAM with standard datasets section in the documentation.
Community
Please contact us via GitHub Discussions if you have any questions or notice any bugs about the software.
Currently working on
- Refactoring
- Algorithm changes and parameter additions to improve performance
- Add tests
- Marker integration
- Implementation of extra camera models
- Python bindings
- IMU integration
The higher up the list, the higher the priority. Feedbacks, feature requests, and contribution are welcome!
License
2-clause BSD license (see LICENSE)
The following files are derived from third-party libraries.
-
./3rd/json
: nlohmann/json [v3.6.1] (MIT license) -
./3rd/spdlog
: gabime/spdlog [v1.3.1] (MIT license) -
./3rd/tinycolormap
: yuki-koyama/tinycolormap (MIT license) -
./3rd/FBoW
: stella-cv/FBoW (MIT license) (forked from rmsalinas/fbow) -
./src/stella_vslam/solver/essential_5pt.h
: part of libmv/libmv (MIT license) -
./src/stella_vslam/solver/pnp_solver.cc
: part of laurentkneip/opengv (3-clause BSD license) -
./src/stella_vslam/feature/orb_extractor.cc
: part of opencv/opencv (3-clause BSD License) -
./src/stella_vslam/feature/orb_point_pairs.h
: part of opencv/opencv (3-clause BSD License)
File truncated at 100 lines see the full file
Package Dependencies
Deps | Name |
---|---|
libg2o |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
stella_vslam_ros |