interpolation done without imresize
Show older comments
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.
Accepted Answer
More Answers (1)
Sean de Wolski
on 24 Jan 2013
I would use interp2 or griddedInterpolant.
doc interp2
doc griddedInterpolant
2 Comments
Image Analyst
on 24 Jan 2013
"should not use any functions available on matlab."
Sean de Wolski
on 24 Jan 2013
Well technically griddedInterpolant is a class with methods ;)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!