MATLAB: How to crop image.

crop imageimage analysisImage Processing Toolbox

i want to crop image from column(1-10) and column(310-320) without changing the row size.
my image is 240 rows,320 columns.

Best Answer

croppedImage = imcrop(yourImage, [11, 1, 300, 240]);
Related Question