MATLAB: Cropping image

digital image processingimage processingImage Processing Toolbox

how to crop image according to value x(column) and y(row)? i want to crop image and group it according to same row or same column.

Best Answer

To crop you can use imcrop(), or simply use indexing:
croppedImage = fullImage(row1:row2, col1:col2);
Related Question