how to find the largest object in the coin image?

12 Ansichten (letzte 30 Tage)
betty
betty am 1 Jan. 2022
Kommentiert: betty am 1 Jan. 2022
how to find the largest object in the image below ? the code I wrote below does not work
A = imread('eight.tif');
C=imbinarize(A);
figure,imshow(C)
B=bwareafilt(C,1);
figure,imshow(B)

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 1 Jan. 2022
A = imread('eight.tif');
C=imbinarize(A, 'adaptive', 'ForegroundPolarity', 'dark');
figure,imshow(C)
B=bwareafilt(~C,1);
figure,imshow(~B)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by