You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :)
Required Info
Camera Model
D435
Firmware Version
5.10.3.0
Operating System & Version
Ubuntu 16
Kernel Version (Linux Only)
4.15
Platform
PC
SDK Version
2.16.0
Language
C++
Segment
VR
Issue Description
For filtering (i.e., post-processing) the depth_frame, why does the following code give random results?
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
For filtering (i.e., post-processing) the depth_frame, why does the following code give random results?
rs2::spatial_filter spat_filter;
rs2::temporal_filter temp_filter;
rs2::disparity_transform depth_to_disparity(true);
rs2::disparity_transform disparity_to_depth(true);
depth_frame = depth_to_disparity.process(depth_frame);
depth_frame = spat_filter.process(depth_frame);
depth_frame = temp_filter.process(depth_frame);
depth_frame = disparity_to_depth.process(depth_frame);
"original depth_frame"
"filtered depth_frame"
Thanks.
The text was updated successfully, but these errors were encountered: