removing connected component

How can I remove a connected component from an image of particular length?
Actually I am processing some images in which there is a connected component in the form of an arc, which starts with the start of image top and ends where image ends. its length is equal to or greater than the image height.
please help me in doing this

2 commentaires

Chandra Kurniawan
Chandra Kurniawan le 10 Mar 2012
Would you show me the image?
http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers
md mizan chowdhury
md mizan chowdhury le 13 Sep 2017
how can i remove all connected component from an image

Connectez-vous pour commenter.

Réponses (3)

Image Analyst
Image Analyst le 10 Mar 2012

0 votes

You can use ismember(), as shown in my BlobsDemo image segmentation tutorial: http://www.mathworks.com/matlabcentral/fileexchange/25157 First identify the index of the blob you want to eliminate. It can be based on its area, shape, perimeter, MajorAxisLength, or whatever. Then use ismember to get a labeled image without that particular blob.
md mizan chowdhury
md mizan chowdhury le 14 Sep 2017

0 votes

how can i remove all connected components

3 commentaires

Easy. Simply set everything to zero
labeledImage(:) = 0;
Now all components are gone. But what good is this to you?
md mizan chowdhury
md mizan chowdhury le 18 Sep 2017
plz give me the whole code
Image Analyst
Image Analyst le 18 Sep 2017
That was it. All connected components will be erased once you execute that code.

Connectez-vous pour commenter.

md mizan chowdhury
md mizan chowdhury le 18 Sep 2017

0 votes

detect text from video.

1 commentaire

Image Analyst
Image Analyst le 18 Sep 2017
This is not an "Answer" for Khawaja. It does not address his original question at the top at all.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Images dans Centre d'aide et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by