Borrar filtros
Borrar filtros

Finding area, average and moments of parts of a segmented image

7 visualizaciones (últimos 30 días)
besaret koçak
besaret koçak el 27 de Sept. de 2023
Editada: Image Analyst el 1 de Oct. de 2023
I have an image divided into sections. How can I find the area, mean, second moment and third moment of those sections? I used the "bwconncomp" function to detect the partitions.

Respuestas (1)

Image Analyst
Image Analyst el 30 de Sept. de 2023
It's a generic, general purpose demo of how to threshold an image to find blobs, and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
Also check out the attached demo on image moments.
  3 comentarios
besaret koçak
besaret koçak el 30 de Sept. de 2023
I want to find the area, mean, second moment, third moment and variance for each blob separately. I wrote a code like this for this. İs it true
for i=1:1:CC.NumObjects
moment1(i,1) = moment(image(CC.PixelIdxList{1,i}),1)
moment2(i,1) = moment(image(CC.PixelIdxList{1,i}),2)
moment3(i,1) = moment(image(CC.PixelIdxList{1,i}),3)
area(i,1) = bwarea(CC.PixelIdxList{1,i})
means(i,1) = mean(GPR(CC.PixelIdxList{1,i}))
var_result(i,1)= var(double(image(CC.PixelIdxList{1,i})))
end
Image Analyst
Image Analyst el 1 de Oct. de 2023
Editada: Image Analyst el 1 de Oct. de 2023
image is a function so you would not want to use that for your variable name. PixelIdxList just gives indexes. I think you'd want PixelList which gives (x,y) coordinates. I don't know what your GPR function or array is, but your means and var_result do not make sense to me. Maybe by mean you mean the mean x and y, in other words the centroid which you should get directly from regionprops.

Iniciar sesión para comentar.

Categorías

Más información sobre Images 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