I cannot read and display this image
Mostrar comentarios más antiguos
By using simple imread and then disp command
for example: im=imread("daemon.jpeg");
disp(im);
this pic dont open but other jpeg pictures open perfectly
please make and give me a code that will open and read these types of jpeg so i can use that code on my project
Download and try this image please
My Course teacher Gave us project with this Pic

Respuesta aceptada
Más respuestas (1)
Image Analyst
el 29 de Ag. de 2023
Use imshow() instead of disp():
imshow(im);
Categorías
Más información sobre Prepare Model Inputs and Outputs 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!