how to calculate the area of the segmented region?
조회 수: 2 (최근 30일)
이전 댓글 표시
I've already segment the CT image, unfortunately I don't know how to calculate the area of the segmented region. please someone help me to overcome this problem. Thank you for your time and cooperation.
댓글 수: 0
답변 (2개)
Image Analyst
2014년 12월 1일
See my Image Segmentation Tutorial : http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862 This well-commented tutorial goes over all that in excruciating detail explaining each step of the way. It also does some size filtering and cropping after segmentation, in case you're interested in that.
댓글 수: 0
Matthew Schneck
2014년 12월 1일
You can calculate the area of a segmented image using the regionprops function:
area = regionprops(your_image_name , 'Area')
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!