Borrar filtros
Borrar filtros

How regionprops orders the regions ?

7 visualizaciones (últimos 30 días)
Tala Hed
Tala Hed el 1 de Jun. de 2017
Comentada: Image Analyst el 24 de Oct. de 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

Respuesta aceptada

Image Analyst
Image Analyst el 1 de Jun. de 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 comentario
Tala Hed
Tala Hed el 2 de Jun. de 2017
Editada: Walter Roberson el 30 de Ag. de 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

Iniciar sesión para comentar.

Más respuestas (1)

Sippapas Mongkoldao
Sippapas Mongkoldao el 29 de Ag. de 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 comentarios
Sippapas Mongkoldao
Sippapas Mongkoldao el 24 de Oct. de 2020
Editada: Sippapas Mongkoldao el 24 de Oct. de 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 el 24 de Oct. de 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;

Iniciar sesión para comentar.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by