-
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
sparse point cloud noise in backside of camera direction L515 #11124
Comments
Hi @robopassio A way to remove sparse data in PCL without having to filter by depth values would be to apply a StatisticalOutlierRemoval filter to exclude loose points that are not joined to a large area. A script example of using this PCL filter with the L515 camera model is at #9658 (comment)
|
As I mentioned, applying an outlier removal will not be a good approach due to the variation of pcl density. |
This issue is quite related to mine. However, the method to resolve that is not clear. Could you please give me few suggestions? |
I see, you mean the density of the points is changing, meaning that they will not consistently be outliers. Thanks very much for the clarification. Whilst I cannot speak for the performance of non-RealSense lidar devices, there are certain scenarios where the quality of results from an L515 lidar depth camera may reduce. This could include natural sunlight entering through a window (as the L515 is sensitive to IR light sources) or pointing the camera directly at a smooth surface (tilting the camera at an angle can provide better results for such surfaces). The L515 will also tend to look through transparent objects such as empty drinks bottles and pick up the solid depth detail behind the bottle. An official L515 user guide document with image improvement tips can be obtained from the link below. Regarding #7117 (comment) I could not determine from the comments which filtering techniques the RealSense user was applying. Setting the L515's Visual Preset camera configuration as Short Range may help to reduce noise. C++ code for doing so is below.
|
I think this issue is quite popular in recording PCL using L515. I think it was resolved by a postprocessing step. Hope you or other guys (maybe @RealSenseSupport ) could suggest a specific technique to resolve that. |
The only depth post-processing filter supported by the RealSense SDK for L515 is the Temporal filter. If the Temporal filter has its Filter Smooth Delta setting increased from its default value of '20' to its maximum of '100' then it may result in a reduction of black holes in the far background and a little less fluctuation of values. Before After |
Could you provide further information about the following statement from your opening comment, please: "The captured PCL looks great at regions visible to the camera eye. For the backside (invisible to the camera) regions, I expect no PCL will be obtained". Are the 'backside'and 'invisible' regions areas of the scene that are not being picked up by the depth sensing for some reason? It looks as though there should be a solid bathroom there but for some reason a lot of the detail is not being picked up. It would be very helpful if you could provide an RGB image of the scene so that I can see whether there are lighting conditions, reflections or surface material types that might be making it difficult for those areas of the scene to have depth detail detected if they are meant to be included on the depth image. Thanks very much for your patience! |
Hi @robopassio Do you require further assistance with this case, please? Thanksl |
Yes, the backside of the object, that is not visible to the camera, should not have any PCL. However, as you can see from the posted image, the sparse noise happen. Also, refer to the comment, it is called as "tails" of the object. My issue is very similar to that one. We don't want to have any noise in the edge or "tail" PCL at invisible regions to the camera. Is that possible? |
Perhaps you could reduce background noise by increasing the value of the L515's RS2_OPTION_CONFIDENCE_THRESHOLD setting from its default value of '1'. This setting is the confidence level threshold used by the depth algorithm pipe to set whether a pixel will get a valid range or will be marked with invalid range. Here is an example use:
The settable range is 0 to 3. You can see the effect on distant noise in the RealSense Viewer by adjusting the Confidence Threshold slider in the 'L500 Depth Sensor > Controls' section of the Viewer's options side-panel. |
Hello,
I'm using L515 to capture point cloud (PCL) data at resolution 1024 x 768, 30 fps.
The captured PCL looks great at regions visible to the camera eye.
For the backside (invisible to the camera) regions, I expect no PCL will be obtained. However, sparse noise appears in those regions. The density of those patterns is arbitrary. So it's impossible to filter out using some filters.
Is there any way to address this issue?
Thanks.
The text was updated successfully, but these errors were encountered: