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