how to get a single feature vector from SIFT descriptor [closed]

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);

Leave a Comment