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!