How can I remove some of the largest connected components from an image and save the new image?
2 ビュー (過去 30 日間)
古いコメントを表示
% uploading my image I=imread('washington.jpg') % converting it to binary II=rgb2gray(I); figure();imshow(II) BW=bwlabel(II,8);
% This commands choose connected components bigger than a threshold and show them in different images % but I want this CCs to be ommited from the main image and I don`t want to assign a threshold mannually for k=1:max(max(BW)) out=(BW==k); [i,j]=find(out~=0); if length(i)>500 figure();imshow(out2) end end
0 件のコメント
回答 (2 件)
md mizan chowdhury
2017 年 9 月 14 日
how can i delete all connected components.
1 件のコメント
Image Analyst
2017 年 9 月 14 日
Easy. Simply set everything to zero
labeledImage(:) = 0;
Now all components are gone. But what good is this to you?
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!