Is there a way to threshold the background out of the image, to leave only the object?
조회 수: 9 (최근 30일)
이전 댓글 표시
Hi folks,
I have images that look like the following, and I'm trying to threshold out the background. For some images, this is a very straightforward endeavour. For others, however, it's not that easy because the background and object have similar greyscale levels.
Ultimately, I want to use regionprops() to measure the object's properties.
May I please ask if there's a way to get around this?
My images look like this:
댓글 수: 1
채택된 답변
Image Analyst
2021년 8월 4일
편집: Image Analyst
2021년 8월 4일
Try imbinarize(). Then check the mean gray level in the center of the mask image and compare it to the mean gray level at the top of the image. If the mask is dark in the center and bright around the top, then invert the mask. Something like (untested)
mask = imbinarize(grayImage);
[rows, columns] = size(mask);
row = round([rows/2-50 : rows/2+50]);
col = round([columns/2-50 : columns/2+50]);
if mean2(mask(1:10)) > mean2(mask(row, col))
% Mask at top is white and in middle is black. Need to invert it.
mask = ~mask;
end
댓글 수: 5
Image Analyst
2021년 8월 5일
@Tanjena Azim Like I already said, I don't know what NROI is. Plus I'm not a watermark expert. I've only played around with it a little bit - probably less than you.
And I don't think the original poster, @Teshan Rezel, knows or cares about watermarks. It's totally unrelated to this discussion thread.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!