please tell me about image interpolation.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sandeep kumar
am 28 Aug. 2015
Kommentiert: Walter Roberson
am 28 Aug. 2015
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 Kommentare
Akzeptierte Antwort
Walter Roberson
am 28 Aug. 2015
scale = alpha;
newimage = imresize(YourImage, scale);
2 Kommentare
Walter Roberson
am 28 Aug. 2015
MyImage = rand(263,263,3);
biggerImage = imresize(MyImage, 2);
smallerImage = imresize(MyImage, 1/2);
Image512a = imresize(MyImage, [512 512]);
Image512b = imresize(MyImage, 512/263);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!