资源简介

本程序将SIFT与边缘结合起来用来做图像配准 先用SIFT检测关键点 用CANNY算子进行边缘检测 进而优化选取最佳匹配点 进行向量匹配 图像配准。

资源截图

代码片段和文件信息

%-------------------------------------------------------------------------
% image mosaicing demo program
% intro: this is a very simple demo program to join two images together
%        corners are pre-matched to be saved into cornerpairs.mat
% developed by bugzhao for evaluation use only April 2005 bugzhao@sohu.com
%-------------------------------------------------------------------------
function imagesmosaicdemo()
% read base image and the second image to be registered to the base image
close all;
unregistered = imread(‘2.jpg‘);
baseimage=imread(‘1.jpg‘);
figureimshow(baseimage);
figureimshow(unregistered);
% manually select point matches or automatically done by harris corner detector and CC matching
load cornerpairs.mat;
t_concord = cp2tform(corners2corners1‘proje

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1384  2005-04-09 16:26  SIFT_EDGE_test.m

----------- ---------  ---------- -----  ----

                 1602                    2


评论

共有 条评论