please tell me about image interpolation.
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Walter Roberson
2015-8-28
scale = alpha;
newimage = imresize(YourImage, scale);
2 个评论
Walter Roberson
2015-8-28
MyImage = rand(263,263,3);
biggerImage = imresize(MyImage, 2);
smallerImage = imresize(MyImage, 1/2);
Image512a = imresize(MyImage, [512 512]);
Image512b = imresize(MyImage, 512/263);
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!