Skip to content

Instantly share code, notes, and snippets.

@juniorhero
Last active August 26, 2016 20:12
Show Gist options
  • Save juniorhero/e0910f2f4d4e174e48756e2cb4697241 to your computer and use it in GitHub Desktop.
Save juniorhero/e0910f2f4d4e174e48756e2cb4697241 to your computer and use it in GitHub Desktop.
Matlab Batch Resize Image
% Original Code By ATHUL JAYARAM
% athuljayaram@gmail.com
function imout = myimfcn(im)
% IM - input image.
% IMOUT - output image.
x =imresize(im,[767 576]);
imout = x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment