How to increase image size while keeping image sharp?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi everyone,
This is a pretty general question. I took a screenshot of the MATLAB toolstrip (actually part of it).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/614640/image.png)
It looks great except I want it bigger. So I use imresize( ),
B = imresize(A, 4);
but it looks pixelated.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/614645/image.png)
Is there a better way to do this?
2 comentarios
Respuestas (1)
Image Analyst
el 11 de Mayo de 2021
You need to use the nearest option:
B = imresize(A, 4, 'nearest');
5 comentarios
Image Analyst
el 11 de Mayo de 2021
Yes, it can be, which is good for me because that's my whole career and it's good if people think it's hard because they are impressed with my work.
Post your original image if you want.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!