필터 지우기
필터 지우기

how do I find the smallest object in a binary coins image ?

조회 수: 2 (최근 30일)
betty
betty 2021년 12월 7일
댓글: betty 2021년 12월 8일
How to find the smallest object in the image below I would appreciate it if you could help

답변 (2개)

Yusuf Suer Erdem
Yusuf Suer Erdem 2021년 12월 7일
check imfindcircles command. there are multiple similar examples on matlab help center. try to adapt yours to them.

yanqi liu
yanqi liu 2021년 12월 8일
clc; clear all; close all;
im=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/826480/image.png');
bw=im2bw(im);
bw=imclearborder(imfill(bw,'holes'));
% find the smallest object
stats=regionprops(bw);
ar=cat(1,stats.Area);
[~,ind]=min(ar);
figure; imshow(im);
hold on; rectangle('position', stats(ind).BoundingBox, 'EdgeColor', 'g', 'LineWidth', 2)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by