Click here to Skip to main content
15,887,485 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how do i Implement Lanczos interpolation using code to double the size of an input image using matlab.
Posted
Updated 25-Feb-15 2:51am
v3

1 solution

XML
Use the function <b>imresize </b>method

NewImage = imresize(OldImage, 2.0, 'lanczos2');
This will scale the image 2 times based on Lanczos interpolation.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900