如何从SIFT描述符中获取单个特征向量

时间:2016-08-26 14:12:23

标签: matlab image-processing machine-learning computer-vision

我正在尝试使用SIFT描述符来描述之前获得的功能。

问题是,当我使用带有SIFT描述符的特征图像时,结果是nx128。其中n是每个不同图像的不同数字。我知道SIFT使用关键点描述,因此行的维度存在差异。但有没有办法获得单个特征向量(1x128)。

此致

1 个答案:

答案 0 :(得分:0)

查看您的评论,一个合适的解决方案是:

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