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!


