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
Image Analyst
2012년 5월 4일
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
2012년 5월 4일
답변 (2개)
Image Analyst
2012년 5월 4일
% 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
Lee how
2017년 4월 27일
Great!
Misbah Abid
2018년 7월 25일
Bundle of thanks .Problem resolved .
Vijaya yaduvanshi
2021년 3월 4일
thank you so much
jyotsna kosuru
2021년 5월 24일
excellent
Image Analyst
2021년 5월 24일
See attached function that turns off a bunch of other unwanted warnings.
Alex Taylor
2012년 5월 4일
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
Aliyu Abdu
2012년 5월 4일
Nidhi Kumari
2018년 10월 14일
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
2018년 10월 14일
Decompress the image back to a 2-D uncompressed image and display that.
SS
2019년 5월 23일
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?
Image Analyst
2019년 5월 23일
Try using [] in imshow():
imshow(yourImage, []);
Image Analyst
2019년 5월 24일
It looks like comp is all the same value. Please attach it in a .mat file.
This file contains my overall code that I am using.
Image Analyst
2019년 5월 25일
Please attach 1.jpg. Previously you attached 1.png, which is different.
SS
2019년 5월 25일
I am using this image
SS
2019년 6월 13일
Please, Can you give me any solution of my problem?
카테고리
도움말 센터 및 File Exchange에서 Display Image에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!