Borrar filtros
Borrar filtros

How can I find the centroids of closely seperated object?

1 visualización (últimos 30 días)
Bipul Biswas
Bipul Biswas el 23 de Ag. de 2021
Comentada: Bipul Biswas el 23 de Ag. de 2021
In the left pannel, I have four obejct, they are close but separated. I am using the " regionprops( image ,'Area','BoundingBox', 'Centroid') but in return I am getting only one centriods. I need each object's centroids. Can you please help me with it?
  2 comentarios
DGM
DGM el 23 de Ag. de 2021
Please attach a copy of the actual image you're using.
Bipul Biswas
Bipul Biswas el 23 de Ag. de 2021
Editada: Bipul Biswas el 23 de Ag. de 2021
Thanks for the message.
This is the original image.
Left pannel is the dark part of the partilces and right pannel is the bright part of the partilces (Top Figure). I need the centroids of both dark and black parts of each particles.

Iniciar sesión para comentar.

Respuesta aceptada

DGM
DGM el 23 de Ag. de 2021
Editada: DGM el 23 de Ag. de 2021
I'm going to go out on a limb here and guess that the image you're feeding to regionprops() is a numeric image instead of a logical image. If that's the case, it will assume that it's a label array (as from bwlabel()). From that assumption, it interprets all blobs as having the same label (label 1), treating them all as one object.
inpict = imread('4dot.png');
% if the image is numeric
inpict = im2double(inpict);
S = regionprops(inpict,'centroid');
C = vertcat(S.Centroid)
C = 1×2
204.0885 135.5302
% if the image is logical
inpict = inpict>0.5;
S = regionprops(inpict,'centroid');
C = vertcat(S.Centroid)
C = 4×2
166.3950 106.1014 184.9957 160.6012 232.1303 97.4901 262.4825 160.1700
  4 comentarios
DGM
DGM el 23 de Ag. de 2021
Given that OP is dividing the objects into two regions, I was under the impression that the half-object centroids was more important than the centroid of each round object.
Bipul Biswas
Bipul Biswas el 23 de Ag. de 2021
Yes, in this case, half part's centroid is more important.
BTW, Thanks.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by