how to know the number of regions of the image?

조회 수: 7 (최근 30일)
As Bdg
As Bdg 2017년 7월 17일
댓글: As Bdg 2017년 7월 31일
Hi! I have a color segmented image. i need to know the number of regions of the image , and the size of each region. Can anyone help me please?

답변 (2개)

Guillaume
Guillaume 2017년 7월 17일
편집: Guillaume 2017년 7월 17일
You use regionprops on your segmented image. The number of elements in the structure array it returns is the number of regions. The Area field or the BoundingBox field of the structure gives you the size, depending on what you call size.
  댓글 수: 3
Guillaume
Guillaume 2017년 7월 17일
편집: Guillaume 2017년 7월 17일
I'm not sure what an inverse wavelet transform of a labeled image gives you. If it's still a label image then you can use regionprops on it. If it's not, then you need to segment it again using an appropriate method, possibly another watershed.
I don't really understand why you'd want to apply an inverse wavelet transform to the result of a watershed segmentation.
As Bdg
As Bdg 2017년 7월 26일
I'm using multiresolution approach for image segmentation. i constructed the pyramid using the wavelet transform , i segmented the image using watershed at a lower resolution, but now i need to go back to my original image . that's why i need to apply an inverse wavelet transform . And after applying it i have to merge the regions and refine regions borders, so i need to define the regions after the inverse wavelet transform. If i'll use another watershed, the image will be more over-segmented , however my goal is to avoid this over-segmentation and minimise the number of regions.

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


Image Analyst
Image Analyst 2017년 7월 27일
Use bwlabel() on your segmented (binary) image - that's one way.
[~, numRegions] = bwlabel(segmentedImage);
  댓글 수: 8
As Bdg
As Bdg 2017년 7월 31일
after inverse wavelet transform
As Bdg
As Bdg 2017년 7월 31일

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

카테고리

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

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by