How to remove unwanted points in point cloud
조회 수: 50(최근 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

참고 항목
범주
Find more on Point Cloud Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!