Filter löschen
Filter löschen

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

7 Ansichten (letzte 30 Tage)
besaret koçak
besaret koçak am 27 Sep. 2023
Bearbeitet: Image Analyst am 1 Okt. 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.

Antworten (1)

Image Analyst
Image Analyst am 30 Sep. 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 Kommentare
besaret koçak
besaret koçak am 30 Sep. 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 am 1 Okt. 2023
Bearbeitet: Image Analyst am 1 Okt. 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by