Why can't MATLAB resize an image nicely?
Ältere Kommentare anzeigen
So I have an image with some text on it that I want to display in MATLAB for whatever reason, sounds easy enough, but it turns out that for some reason I hope to find out, MATLAB is apparently awful at rendering images to actually look nice.
I have a feeling there are performance reasons for this, but it seems like users should be able to resize an image with text on it and still actually read the image.
I have attached a sample image showing the original image, a highly distorted but still readable version of the image in Microsoft Word, and then an ever so slightly distorted version of the image in MATLAB which still looks awful.
If anyone can either explain how to fix this, or why its unfixable and why I should like it that way, I would really appreciate it!
1 Kommentar
Shaun VanWeelden
am 16 Mai 2013
Akzeptierte Antwort
Weitere Antworten (3)
Image Analyst
am 16 Mai 2013
0 Stimmen
Try using the 'nearest' option in imresize(). Though if a line is just one pixel in your image, it's either going to be there or not if you use nearest. If you use bicubic then you'll get partial intensity depending on how much of the output pixel lands on your input pixel.
2 Kommentare
Shaun VanWeelden
am 16 Mai 2013
Image Analyst
am 16 Mai 2013
Using nearest will give you sharper edges than bicubic, though at the cost of having jaggies on your edges and lines. Alex is the expert here so he would be able to help you more than me.
Shaun VanWeelden
am 17 Mai 2013
0 Stimmen
DGM
am 12 Apr. 2022
For passers-by:
Normally, imshow() displays images using nearest-neighbor interpolation. That leads to thin features disappearing completely.
It wasn't available at the time of this post, but imshow() also supports bilinear display interpolation:
imshow(myimg,'interpolation','bilinear')
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!