Please suggest ways to remove the unwanted noise from the point cloud generated by the LiDAR scan.
Or how can one smoothen out the LiDAR scan result using ARKit plane detection?
Or how can one smoothen out the LiDAR scan result using ARKit plane detection?
This sample project (https://developer.apple.com/documentation/arkit/environmental_analysis/displaying_a_point_cloud_using_scene_depth) demonstrates 3 distinct features that can result in a smoother result:
Filter based on the confidence level using the confidenceMap
Request and use smoothedSceneDepth instead of sceneDepth
Use a guided filter to upsample the depth map based on the rgb data.