Looking at your comments, an appropriate solution would be:
A = imread('Car.jpg');
% loads the image with a crop tool, select the region to be cropped
B = imcrop(A);
close
% Displays the cropped region
figure, imshow(B);
Looking at your comments, an appropriate solution would be:
A = imread('Car.jpg');
% loads the image with a crop tool, select the region to be cropped
B = imcrop(A);
close
% Displays the cropped region
figure, imshow(B);