Image resize without losing quality of image ? (urgent Issue)

24 views (last 30 days)
I have an image size 1080x854 px. And I resize image to 640x427 px. But imresize () func. does not work well. I lose image quality. Are there any parameter for imresize func. to do not losing to image resolution. Could anyone help me ? Quality of Pixels are changing.
  3 Comments

Sign in to comment.

Answers (1)

Jan
Jan on 22 Jun 2022
Of course reducing the number of pixels reduces the resolution. But you can reduce the artifcats:
imresize(Img, [640,427], 'lanczos3')

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!