필터 지우기
필터 지우기

Obtaining the largest object in an image

조회 수: 2 (최근 30일)
med-sweng
med-sweng 2014년 11월 28일
댓글: Image Analyst 2014년 12월 1일
Say that I have an image with a big object, and then small objects spread apart.
How can I retrieve only that big object?
I think we can use "bwconncomp"?
But, how exactly can we do that here?
Thanks.

채택된 답변

Image Analyst
Image Analyst 2014년 11월 28일
I thought I've given this to you before. Oh well, maybe it was someone else. I've posted it lots and lots of times. Here it is again. The function inside the attached demo will let you extract the N largest or smallest blobs in a binary image.
  댓글 수: 2
med-sweng
med-sweng 2014년 12월 1일
편집: med-sweng 2014년 12월 1일
Thanks for the nice answer. For the final result, if I want to imwrite it, would it be doing the following?
imwrite(binaryImage, 'FinalResult.png');
after:
binaryImage = biggestBlob > 0;
Image Analyst
Image Analyst 2014년 12월 1일
Yes. But you might want to multiply it by 255 first so you can see it without scaling, like if you want a nice thumbnail image in your operating system
imwrite(uint8(255*binaryImage), filename);

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by