如何从 SIFT 描述符中获取单个特征向量
how to get a single feature vector from SIFT descriptor
我正在尝试使用 SIFT 描述符来描述我之前得到的特征。
问题是,当我使用带有 SIFT 描述符的特征图像时,结果是 nx128 。其中 n 是每个不同图像的不同数字。我知道 SIFT 使用关键点描述,因此行的维度存在差异。但是有没有办法获得单个特征向量(1x128)。
此致
查看您的评论,一个合适的解决方案是:
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);
我正在尝试使用 SIFT 描述符来描述我之前得到的特征。
问题是,当我使用带有 SIFT 描述符的特征图像时,结果是 nx128 。其中 n 是每个不同图像的不同数字。我知道 SIFT 使用关键点描述,因此行的维度存在差异。但是有没有办法获得单个特征向量(1x128)。
此致
查看您的评论,一个合适的解决方案是:
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);