Use IMCROP from the Image Processing Toolbox.
For the first image, execute it interactively and save the selected coordinates of the rectangle as a variable ( rect):
[im_cropped rect] = imcrop(im);
Then for other images, these coordinates are applied:
im_cropped = imcrop(im, rect);
source
share