How to remove unwanted points in point cloud
12 次查看(过去 30 天)
显示 更早的评论
Hi,
I am a beginner to Matlab and would like some suggestion on how to remove the top point cloud (which is detached from the body) in the figure below
Thanks in advance
0 个评论
采纳的回答
KSSV
2021-3-10
You can see that the unwanted points are lying in certain intervel of (x,y,z). Get those indices using logical indexing and remove them.
Example:
x = rand(1,100) ;
x(x>0.5) = [] ; % remove x which are greater than 0.5
0 个评论
更多回答(1 个)
Mehmed Saad
2021-3-10
The cheapest and easiest method is use of brush
Select Points you want to delete
now press delete
3 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Point Cloud Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!