interpolation done without imresize
Ältere Kommentare anzeigen
How to do nearest neighbor interpolation and bilinear interpolation on a gray scale image without using imresize? The code is supposed to mimic the operation of imresize but should not use any functions available on matlab.
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 24 Jan. 2013
I would use interp2 or griddedInterpolant.
doc interp2
doc griddedInterpolant
2 Kommentare
Image Analyst
am 24 Jan. 2013
"should not use any functions available on matlab."
Sean de Wolski
am 24 Jan. 2013
Well technically griddedInterpolant is a class with methods ;)
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!