Implement RealSense Frame Fetch Utility, Integrate Dear ImGui Library, and Disable Segmentation Mode#86
Open
Ma1hn wants to merge 36 commits intoweigao95:masterfrom
Open
Implement RealSense Frame Fetch Utility, Integrate Dear ImGui Library, and Disable Segmentation Mode#86Ma1hn wants to merge 36 commits intoweigao95:masterfrom
Ma1hn wants to merge 36 commits intoweigao95:masterfrom
Conversation
TODO: GenericFileFetch::FetchDepthAndRGBImage is not implemented yet
This file contains hidden or 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
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_threaddemonstrates parallel processing for non-rigid reconstruction and point cloud data (PCD) retrieval.Added RealSense Fetch Frame Mode
Please refer to
realsense_configandimgproc/frameio/RealsenseFetch.handRealsenseFetch.cppfor implementation details.Added Mode to Disable Segmentation
Refer to
realsense_configand 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".