imbinarize function do not work im2bw also does not work
Mostrar comentarios más antiguos
ı 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)
Respuestas (1)
KALYAN ACHARJYA
el 30 de Nov. de 2019
Editada: KALYAN ACHARJYA
el 30 de Nov. de 2019
I = rgb2gray(imread('a.png'));
BW = im2bw(I, 0.4);
8 comentarios
Ahsen Cakmakci
el 30 de Nov. de 2019
KALYAN ACHARJYA
el 30 de Nov. de 2019
Editada: KALYAN ACHARJYA
el 30 de Nov. de 2019
Please change the other image file and do verify?
Can you share the code and error message in larger texts (The image above is not visible)?
Ahsen Cakmakci
el 30 de Nov. de 2019
Editada: Ahsen Cakmakci
el 30 de Nov. de 2019
KALYAN ACHARJYA
el 30 de Nov. de 2019
Just type ver in the command window, then enter, it shows all Toolboxes installed, is their Image Processing Toolbox, please confirm?
>>ver
Ahsen Cakmakci
el 30 de Nov. de 2019
KALYAN ACHARJYA
el 30 de Nov. de 2019
Because all images functions are in image processing toolbox, this is the reason it showing the error. You have to install image processing toolbox or use Matlab platform in other system which already have image processing toolbox installed.
Ahsen Cakmakci
el 30 de Nov. de 2019
Zarwish Javaid
el 20 de En. de 2021
how to install image processing toolbox?
and how to remove errors shown in below image?

Categorías
Más información sobre Image Processing Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
