Code covered by the BSD License  

Highlights from
Combine Two Groups of Images

from Combine Two Groups of Images by Nassim Khaled
Combines two groups of images in one new folder after croping them.

b=croping(a,l);
%This function cuts the height of the image by an amount defined by l
%All right are reserved to:
%                         Nassim Khaled
%                         American University of Beirut
%                         Research and Graduate Assistant


function b=croping(a,l);

[m,n,p]=size(a);
x=0;
y=l;
width=n;
height=m-l;
b=imcrop(a,[x y width height]);

Contact us at files@mathworks.com