Interp2 - make resolution lower
7 views (last 30 days)
Show older comments
I have a matrix 'I' representing a digital elevation model, with a pixel resolution of 90m. I need to lower the resolution to 250m and I've been advised to do this using interp2 but I'm unclear on how to do so from the help file?
I don't understand what I put as the X, Y, Z, Xi, Yi inputs.
Thank you
8 Comments
Accepted Answer
Matt J
on 8 Mar 2013
XI and YI must be the same size or vectors of different orientations.
Xo must be a row vector and Yo must be a column vector. So just transpose Yo
ValOut= interp2(Xi, Yi, Values,Xo, Yo.'); %do the interpolation
2 Comments
Matt J
on 8 Mar 2013
I assume you're using a 32-bit machine. Pre-converting your Values to type single would probably make it fit
ValOut= interp2(Xi, Yi, single(Values),Xo, Yo.');
Or, look for a 64-bit computer to work on.
More Answers (2)
Matt J
on 7 Mar 2013
Edited: Matt J
on 7 Mar 2013
I would advise using griddedInterpolant instead
F=griddedInterpolant(I);
Now evaluate F at the sample locations that you want. So, for example, if you want the resulting image to be 100x250, you would do
x=linspace(1,size(I,1),100);
y=linspace(1,size(I,2),250);
I_new = F({x,y});
0 Comments
Grant
on 8 Mar 2013
2 Comments
Matt J
on 8 Mar 2013
Edited: Matt J
on 8 Mar 2013
Thanks, but it appears I don't have griddenInterpolant in my toolbox.
What MATLAB version are you using? It would have to be several years old. You've spelled griddedInterpolant incorrectly, so that might be why you couldn't find it.
I'd also prefer to use interp2 to ensure I'm consistent with another person's method.
INTERP2 calls griddedInterpolant to perform its interpolations. It would be the same method, just with a somewhat easier (IMO) interface.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!