-
Notifications
You must be signed in to change notification settings - Fork 71
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
Implement RealSense Frame Fetch Utility, Integrate Dear ImGui Library, and Disable Segmentation Mode #86
Open
Ma1hn
wants to merge
36
commits into
weigao95:master
Choose a base branch
from
Ma1hn:realsense-ImGui
base: master
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.
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
TODO: GenericFileFetch::FetchDepthAndRGBImage is not implemented yet
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.
Non-Rigid Reconstruction and PCD Retrieval for Each Frame with Parallel Model Fusion
The
apps/surfelwarp_thread
demonstrates parallel processing for non-rigid reconstruction and point cloud data (PCD) retrieval.Added RealSense Fetch Frame Mode
Please refer to
realsense_config
andimgproc/frameio/RealsenseFetch.h
andRealsenseFetch.cpp
for implementation details.Added Mode to Disable Segmentation
Refer to
realsense_config
and the "use_segmentation" option. If foreground/background segmentation is not used, set "use_downsample" to true. Note that with large datasets, CUDA may encounter issues if this is not done.Added User-Selectable Online Rendering Mode
Refer to
realsense_config
. When "offline_rendering" is set to true, "show_online" should be set to false. Online rendering takes priority over offline rendering. Therefore, if "show_online" is true, the system will render online regardless of the "offline_rendering" setting.Added Mode to Downsample Input Frames
Due to the limitations of CUDA global constant memory and limited CUDA programming knowledge, a downsample mode has been added. For example, if the RealSense input frame is 640x480, downsampling will reduce it to 320x240. This mode is implemented for
"imgproc/frameio/RealsenseFetch.h"
and"imgproc/frameio/VolumeDeformFileFetch.cpp"
.