imbinarize function do not work im2bw also does not work
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ı am trying to get an image in the binary form but the funtions for it doesn't work.
ı tried both imbinarize and im2bw.
I = imread('a.png');
BW = im2bw(I, 0.4);
figure
imshow(I)
0 commentaires
Réponses (1)
KALYAN ACHARJYA
le 30 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 30 Nov 2019
I = rgb2gray(imread('a.png'));
BW = im2bw(I, 0.4);
8 commentaires
Zarwish Javaid
le 20 Jan 2021
how to install image processing toolbox?
and how to remove errors shown in below image?

Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
