필터 지우기
필터 지우기

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

조회 수: 7 (최근 30일)
besaret koçak
besaret koçak 2023년 9월 27일
편집: Image Analyst 2023년 10월 1일
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.

답변 (1개)

Image Analyst
Image Analyst 2023년 9월 30일
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
besaret koçak
besaret koçak 2023년 9월 30일
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 2023년 10월 1일
편집: Image Analyst 2023년 10월 1일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by