资源简介
本程序将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
相关资源
- SIFT2844912
- docs
- Max_CCM 用于图像配准
- Harris.rar 特征提取是图像配准的重要步
- sift sift图像匹配的纯matlab代码
- 0301 图像配准和拼接
- image-registration
- PG_BOW_DEMO 图像的特征用到了Dense Sift
- RegsiterFM 傅里叶梅林变换实现图像配准
- SIFT 图像检索中经典的SIFT方法matlab实
- sift----matlab sift算法的完整matlab程序
- demo_ASIFT_Win ASIFT图像特征提取源代码
- PhaseCongruency 提取图像相位一致性特征
- bow-sift 实现图片的sift特征的提取
- plot 使用sift+RANSAC完成两幅图像的特征
- 3D_MATCHing_SIFT matlab环境下的三维点云配
- computer_vision_work 自动图像拼接
- imMosaic 基于sift的图像拼接算法
- ImageMatching_MATLAB 一个图像配准的MATL
- goddy
- LBP-SIFT-image-matching-algorithm-combined
- sift 自己实现的sift特征提取的matlab代
- vlfeat-0.9.9
- RANSAC 图像配准算法打包
- matlab demons算法用来实现图像的配准
- sift sift特征提取
- surf 改进的sift算法
- sift-match MATLAB工具sift实现图像拼接
- immosaic-by--sift 基于sift的图像特征点提
- sift
评论
共有 条评论