필터 지우기
필터 지우기

How to select only round objects from this image?

조회 수: 3 (최근 30일)
Mohammad Farhad Aryan
Mohammad Farhad Aryan 2020년 3월 7일
댓글: Image Analyst 2022년 7월 22일
I am working on images that have round and some non-round objects and I want to select only the round objects. How can I select only round objects from the image in post https://www.mathworks.com/help/images/identifying-round-objects.html ?
Any help is appreciated.

채택된 답변

Image Analyst
Image Analyst 2020년 3월 7일
Threshold the image to get the blobs, then compute circularities and filter to get those with circularities near 1:
mask = imbinarize(grayImage);
mask = imfill(mask, 'holes');
labeledImage = bwlabel(mask);
props = regionprops(mask, 'Area', 'Perimeter');
allAreas = [props.Area];
allPerimeters = [props.Perimeter];
circularities = allPerimeters .^ 2 ./ (4 * pi * allAreas);
% Get those blobs with circularity near 1.
roundindexes = find(circularities > 0.8 & circularities < 1.5)
% Get new mask
roundBlobs = ismember(labeledImage, roundIndexes);
imshow(roundBlobs);
title('Only the round blobs')
  댓글 수: 3
Amal
Amal 2022년 7월 22일
what is the function ismember
Image Analyst
Image Analyst 2022년 7월 22일
ismember tells you if some or all of one list is contained in another list.

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

추가 답변 (0개)

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by