Hi,
I'm trying to load and display an image using imshow().
im = im2double(imread('/MATLAB Drive/My Project/images/selfie.jpg'));
figure(), imshow(im);
The figure window comes up, but nothing is there. If I try to save the image using print I get a white image. I can look at the im variable, and it seems to have loaded properly. Help!

 Réponse acceptée

Anton Semechko
Anton Semechko le 11 Juil 2018

3 votes

Use syntax:
imshow(im,[])
when im has non-integer format. Or just do this:
im = imread('/MATLAB Drive/My Project/images/selfie.jpg');
figure
imshow(im)

5 commentaires

Noy Uzrad
Noy Uzrad le 18 Avr 2020
I have the same problem and yet it does not work
SAI SAMYUKTHA N
SAI SAMYUKTHA N le 7 Avr 2022
Thanks a lot! The first one itself worked for me
Isabela Rodrigues
Isabela Rodrigues le 13 Oct 2022
For me is the same, didn't work and my image still appear as a graphic or doesn't appear. Help
%Image
HeadCT = imread('HeadCT.jpg');
figure
imshow('HeadCT.jpg');
@Isabela Rodrigues what error message do you get? This works:
%Image
HeadCT = imread('circuit.tif');
imshow('circuit.tif'); % Or imshow(HeadCT);
which is essentially what you did.
If you have any more questions, then attach your image with the paperclip icon after you read this:
DGM
DGM le 13 Oct 2022
Any JPG file that can be read by imread() should be able to be displayed directly with imshow() or recast using im2double(). Either the image file isn't being read as expected, or there's something wrong with imshow() that I can't guess at.
You'll have to provide more information about the specifics. Do all images behave this way? Is it only certain images? If it's a certain image, attach it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange

Produits

Version

R2018a

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by