-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load multiple non-overlapping maps #265
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Link to download the video merged and individual .msg maps to test it. |
bug map_db_path2 not set solved
Thanks! |
2 tasks
I will close this pull request as I have added a feature that can do much the same thing. See #380. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request to implement loading of multiple non-overlapping maps (#223). Added an interface to load a new map over a previous loaded one, without deleting the first one, with the possibility of scale, transpose and rotate this second map. We implemented in the example of "run_video_localization.cc" this functionality. To test this functionality we used the AIST dataset, making two maps, one using "aist_entrance_hall_1" and other with "aist_living_lab_1". Then we ran the example mentioned, with the two maps, using merged video of the two sets, one after another, and openvslam is capable of localize in one map, and when ends the first map, openvslam gets to "Lost" state but only for a few seconds before localizing to the other map.
If you have any suggestion or change to make, please make us know.
Furthermore, now we are exploring the option of load overlapping maps, since we found the difficulty of mapping large scenarios, we would like to map each section, and then join all them as a whole. How would you consider implementing this if its possible?
Thank you in advance,