Effacer les filtres
Effacer les filtres

How regionprops orders the regions ?

7 vues (au cours des 30 derniers jours)
Tala Hed
Tala Hed le 1 Juin 2017
Commenté : Image Analyst le 24 Oct 2020
Hello all,
I am confused how regionprops organizes the results? I have a picture that has 7 dark spots on it and need to calculate the area of each.Using regionprops, it shows the areas in pixels but in a confusing order! Is there anyway that I can get the results in an understandable order? like vertically or horizontally with the corresponding area?
Thank you Faraz

Réponse acceptée

Image Analyst
Image Analyst le 1 Juin 2017
The blobs are labeled/ordered/identified/numbered by bwconncomp() or bwlabel(). The order is column major order like most things in MATLAB.
So it goes down the image starting in the upper left pixel and goes down the first column. If it "sees" a pixel that's part of a blob that is not yet labeled, then it does a region growing to label that whole blob, even if it goes off into other rows and columns to the right or above. Then, once that blob is labeled, it continues on to find any other blobs. It proceeds like this top-to-bottom, left-to-right (i.e. column-by-column) until it has found and labeled every blob.
Does that explain it well enough?
  1 commentaire
Tala Hed
Tala Hed le 2 Juin 2017
Modifié(e) : Walter Roberson le 30 Août 2020
yes. Thanks a lot. I also found a function online which labels the regions. The function exactly works as you explained. here is the function https://www.mathworks.com/matlabcentral/fileexchange/19665-visualize-output-of-bwlabel

Connectez-vous pour commenter.

Plus de réponses (1)

Sippapas Mongkoldao
Sippapas Mongkoldao le 29 Août 2020
Hi , Sorry for digging again .
I just wonder if I can order it by left-to-right , top-to-bottom and row-by-row instead of column-by-column ? So it can detect the top piece first , roll to the right and detect the next piece under it. Is it possible to use the regionprops on this condition or someone has an code to share with me ?
Thanks a lot
  5 commentaires
Sippapas Mongkoldao
Sippapas Mongkoldao le 24 Oct 2020
Modifié(e) : Sippapas Mongkoldao le 24 Oct 2020
This seem logically works. I'm trying now and facing some problems.
  1. This line is shown as error ''too few argument". What is happening?
thisBlob = ismember(labeledImage)
2. Do you have some ideas how to get rid of undesired blobs (the top-left one and the 2 in below-right)?
Appreciate!
Image Analyst
Image Analyst le 24 Oct 2020
  1. You need to pass k into ismember(): thisBlob = ismember(labeledImage, k)
  2. If the bad blobs are in known rows, then you can erase them
% Erase top part
mask(1:topRow, :) = false;
% Erase bottom part.
mask(bottomRow : end, :) = false;

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by