MATLAB: Please tell me about image interpolation.

image interpolation

i tried imresize function but in that i dint understand
In some paper, authors used image interpolation by factor alpha to increase or decrease the size of the image. please tell how this this alpha factor used in an image interpolation

Best Answer

scale = alpha;
newimage = imresize(YourImage, scale);