I cannot read and display this image
显示 更早的评论
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

采纳的回答
更多回答(1 个)
Image Analyst
2023-8-29
Use imshow() instead of disp():
imshow(im);
类别
在 帮助中心 和 File Exchange 中查找有关 Prepare Model Inputs and Outputs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!