Detail lost showing images
6 次查看(过去 30 天)
显示 更早的评论
Hi folks,
I'm working in MATLAB to generate some images. Let's say, I have an images A and B, both with dimensions of 900x900. After I have loaded both images into MATLAB with imread(), I try to display both images simultaneously using imshow([A,B],[]).
My problem is in the displayed window, I can see clearly that some details of each image (especially the edge part) are lost. This is very confusing since I'm pretty sure that the concatenated image doesn't exceed the maximum resolution of screen I have, which means MATLAB should display my images w/o downscaling. Any input? Thank you.
Regards,
Feng
0 个评论
采纳的回答
Thorsten
2016-11-1
编辑:Thorsten
2016-11-2
900 x 1800 is pretty large.
You can check the screen size using
get(0,'ScreenSize')
If your image fits on the screen you have to keep in mind that you have to maximise that figure window to full size, and that then you have to subtract some pixels for the decoration of the window and the amount of gray background between the image and the border of the window.
If you want that every image pixel should be represented by a monitor pixel, you have to use
iptsetpref('ImshowInitialMagnification', 100)
If then after imshow your image does not fit on the screen, you get a
Warning: Image is too big to fit on screen; displaying at 67%
> In images.internal.initSize (line 71)
In imshow (line 309)
5 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!