-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Should I be able to use rs2::pointcloud with decimated depth? #6990
Comments
@mbechard , the post-processing filters are mostly* agnostic to the source as long as the input formats agree. (*Doesn't apply for disparity_domain). |
I tried using the latest master and this code crashes using the rs-pointcloud example, using an L515. |
@mbechard hello, I managed to reproduce the error and understand what went wrong - the issue is specific to pointcloud generation with L515 with RGB texture mapping turned on. We'll handle it internally and update as the fix becomes available.
rs2::config cfg;
cfg.enable_stream(RS2_STREAM_DEPTH, -1, 1024, 768, RS2_FORMAT_Z16, 30);
cfg.enable_stream(RS2_STREAM_COLOR);
// Start streaming
pipe.start(cfg); |
Hi @mbechard Is it safe to close this? Were you able to try with the above fix? Thanks fyi if we don’t hear from you in 7 days, this issue will be closed. |
Yep, looks like it. Thanks! |
Before opening a new issue, we wanted to provide you with some useful suggestions (Click "Preview" above for a better view):
All users are welcomed to report bugs, ask questions, suggest or request enhancements and generally feel free to open new issue, even if they haven't followed any of the suggestions above :)
Issue Description
Even in the sample 'pointcloud' app, if I create a decimation filter and set it up with a magnitude of 2, I get a crash when I pass the decimated depth into process() for the pointcloud. The crash occurs deep in the librealsense .dll.
Is this expected to work?
It seems like it sometimes works in my app, but not consistently.
Thanks
The text was updated successfully, but these errors were encountered: