How to delete duplicate or corresponding point from 2 point cloud files? #6014
-
Checklist
My QuestionHi everyone, I have two point clouds (i.e., target and source point cloud). I want to delete the corresponding or duplicated point in a specific radius from the target point cloud (Target minus source). In the end, I want to keep the remaining point cloud after the corresponding point cloud has been removed. How to do this? I have tried to use this code (attached below) but it does not work (the filtered cloud looks the same with the previous one)
If you have any suggestion, I would really appreciate it. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
How to questions are more suitable as a Discussion. |
Beta Was this translation helpful? Give feedback.
You probably can try to compute the cloud to cloud distance first. Then discard any points having distance than some threshold such as less than 0.01. Open3d has similar example for it. http://www.open3d.org/docs/latest/tutorial/geometry/pointcloud.html#Point-cloud-distance