-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add Multicamera support #100
Open
AADad578
wants to merge
117
commits into
develop
Choose a base branch
from
feature/multicam-simple
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
Need to test this and find where the output rgbd image is (or create the image stream with the rgb and depth info). This is then given to the SLAM in robot.launch.
reorganized stuff to be in the correct launch file
…ud generation if only 1 camera
If front arg is false, will do single camera rtabmap as before. If extra_cams is false, will do two camera pointcloud generation and combination. If lidar is true, will assemble lidar scans over time and add them to combined cloud
This reverts commit fba127c.
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.
Use up to 4 realsenses and a lidar. Can disable some cameras with arguments on launch.
Valid Configs:
4 cameras + lidar -> back = true, front = true, extras = true, lidar = true
4 cameras -> back = true, front = true, extras = true, lidar = false
2 cameras + lidar -> back = true, front = true, extras = false, lidar = true
2 cameras -> back = true, front = true, extras = false, lidar = false
1 camera -> back = true, front = false, extras = false, lidar = false
Will always send rgb and depth of back cam to rtabmap for odometry.
Runs all cameras at 424x240x30fps, any more quality reduces refresh rate too much.
Currently runs all cameras at around 15 hz pointcloud generation.