I cannot read and display this image
Mostra commenti meno recenti
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

Risposta accettata
Più risposte (1)
Image Analyst
il 29 Ago 2023
Use imshow() instead of disp():
imshow(im);
Categorie
Scopri di più su Prepare Model Inputs and Outputs in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!