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);
10
solved how to get a single feature vector from SIFT descriptor [closed]