I cannot read and display this image
Ältere Kommentare anzeigen
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

Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 29 Aug. 2023
Use imshow() instead of disp():
imshow(im);
Kategorien
Mehr zu Prepare Model Inputs and Outputs finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!