Image is too big to fit on screen!

Whenever I tried to display the image it shows only a thin dark line and returns in the command window "Warning: Image is too big to fit on screen; displaying at 0% ". What do I do to make it show the image?

2 Kommentare

Image Analyst
Image Analyst am 4 Mai 2012
I have a general fix for this that will work for any warning. See my instructions below in the comments of my answer.
Aliyu Abdu
Aliyu Abdu am 4 Mai 2012
Thanks. The image I'm working on is 512 by 288, and I'm using the "imshow()" routine with the command ">>figure,imshow(img);". working with R2011a on windows 7. My previous question has been solved but most of the time I call the image to show it always display at 50%.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Image Analyst
Image Analyst am 4 Mai 2012

6 Stimmen

% Turn off this warning "Warning: Image is too big to fit on screen; displaying at 33% "
% To set the warning state, you must first know the message identifier for the one warning you want to enable.
% Query the last warning to acquire the identifier. For example:
% warnStruct = warning('query', 'last');
% msgid_integerCat = warnStruct.identifier
% msgid_integerCat =
% MATLAB:concatenation:integerInteraction
warning('off', 'Images:initSize:adjustingMag');

5 Kommentare

Lee how
Lee how am 27 Apr. 2017
Great!
Misbah Abid
Misbah Abid am 25 Jul. 2018
Bundle of thanks .Problem resolved .
Vijaya yaduvanshi
Vijaya yaduvanshi am 4 Mär. 2021
thank you so much
jyotsna kosuru
jyotsna kosuru am 24 Mai 2021
excellent
Image Analyst
Image Analyst am 24 Mai 2021
See attached function that turns off a bunch of other unwanted warnings.

Melden Sie sich an, um zu kommentieren.

Alex Taylor
Alex Taylor am 4 Mai 2012

0 Stimmen

The "thin dark line" that was displayed sounds like what happens when you accidentally display image data that has been shaped to be a vector.
im = imread('pout.tif');
imshow(im(:));
instead of
imshow(im);
When you make this mistake, it's easy to create a vector whose length is bigger than your screen in one dimension. I accidentally do this myself from time to time.

11 Kommentare

Aliyu Abdu
Aliyu Abdu am 4 Mai 2012
I got it, thanks a lot indeed!
Nidhi Kumari
Nidhi Kumari am 14 Okt. 2018
I have applied huffman encoding to compress an image and then i am displaying it but am only getting a thin vertical line. What to do?
Image Analyst
Image Analyst am 14 Okt. 2018
Decompress the image back to a 2-D uncompressed image and display that.
SS
SS am 23 Mai 2019
Hello, I have applied huffman coding in an image. But when i am displaying it, it only displaying the title "Compressed image" with a white background, but it does not show the image. What can I do now?
Try using [] in imshow():
imshow(yourImage, []);
SS
SS am 23 Mai 2019
Bearbeitet: SS am 23 Mai 2019
I have tried this code,
figure,imshow(comp,[]);title('compressed image')
But it shows, only the title
Image Analyst
Image Analyst am 24 Mai 2019
It looks like comp is all the same value. Please attach it in a .mat file.
SS
SS am 25 Mai 2019
Bearbeitet: SS am 25 Mai 2019
This file contains my overall code that I am using.
Image Analyst
Image Analyst am 25 Mai 2019
Please attach 1.jpg. Previously you attached 1.png, which is different.
SS
SS am 25 Mai 2019
I am using this image
SS
SS am 13 Jun. 2019
Please, Can you give me any solution of my problem?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Display Image finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 4 Mai 2012

Kommentiert:

am 24 Mai 2021

Community Treasure Hunt

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

Start Hunting!

Translated by