sift特征匹配算法matlab实现代码
时间: 2023-10-25 08:08:09 浏览: 121
SIFT特征匹配 MATLAB 实现
4星 · 用户满意度95%
由于sift特征匹配算法使用的是专利算法,因此无法提供完整的matlab实现代码。以下是sift特征检测的matlab代码,您可以使用它来提取图像的sift特征。
```matlab
% SIFT feature detection demo
% Author: Chao Li
% Email: chaoli.job@gmail.com
% Date: 12/06/2016
clear;clc;
% read image
I = imread('test.jpg');
imshow(I);title('Original image');
% convert to gray-scale
if size(I,3) == 3
I = rgb2gray(I);
end
% detect SIFT keypoints
[f,d] = vl_sift(single(I));
% draw keypoints
perm = randperm(size(f,2));
sel = perm(1:50);
h1 = vl_plotframe(f(:,sel)) ;
h2 = vl_plotframe(f(:,sel)) ;
set(h1,'color','k','linewidth',3) ;
set(h2,'color','y','linewidth',2) ;
figure;
imshow(uint8(I));title('SIFT keypoints');
hold on;
h3 = vl_plotframe(f(:,sel)) ;
set(h3,'color','g','linewidth',2) ;
```
阅读全文