Re-sampling Images in Matlab

3 views (last 30 days)
Ankit Verma
Ankit Verma on 6 Apr 2012
I want to re-sample the remotely sensed images which are usually very large from 30m to 15m.Does this simply means re-sizing it using imresize function or is their any other method for re-sampling such images in Matlab??
  3 Comments
Ankit Verma
Ankit Verma on 7 Apr 2012
Sorry for the confusion it is meters not megapixels.
Walter Roberson
Walter Roberson on 7 Apr 2012
You want to re-sample from 30 meters resolution to 15 meters resolution? That is, you want to double the resolution of the images? Double _exactly_ ?

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 6 Apr 2012
There are methods involving fft2() and ifft2(); there are methods involving wavelets; there are methods involving extracting subsections of the array; there are methods involving interp2(); there are probably other methods.
Myself, I would only bother to consider alternatives to imresize() if I was doing straight-forward half-resolution, or if I had more time (to do the programming) than I had money (to purchase the Image Processing Toolbox.)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!