how to find the largest object in the coin image?
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
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)
0 Commenti
Risposta accettata
  Walter Roberson
      
      
 il 1 Gen 2022
        A = imread('eight.tif');
C=imbinarize(A, 'adaptive', 'ForegroundPolarity', 'dark');
figure,imshow(C)
B=bwareafilt(~C,1);
figure,imshow(~B)
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





