• 大小: 29KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-02
  • 语言: Matlab
  • 标签: matlab  homography  RANSAC  

资源简介

这是一个印度人编的程序,用于两图像单应矩阵和变换结果的求取

资源截图

代码片段和文件信息

function [ h wim1 ] = homography( i1 i2)


% This function estimates 2D-2D plane projective homography between two 
% perspective images using Direct Linear Transformation RANSAC 
% and Levenberg Marquardt optimisation.

% The format for calling upon the function is as follows:

% [h wim] = homography(im1 im2);

% where

% im1 -> 1st Image
% im2 -> 2nd Image
% h -> Returned homography matrix
% wim -> Warped version of im1 w.r.t. im2

% Code written by B S SasiKanth (bsasikanth@gmail.com) of the Indian 
% Institute of Technology (IIT) Guwahati.



% Switch off warnings for non-singular cases of RANSAC to be encountered

warning off all;

% Finding Correspondences

a = matching(i1i2);

% Computing Homography

h = autohomest2d(a);

% Computing Lef

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-07-19 11:03  homography\
     文件       48053  2010-12-06 18:11  homography.m
     文件       48053  2010-12-06 13:11  homography\homography.m
     文件        1365  2010-12-06 13:11  homography\license.txt
     文件        1365  2010-12-06 18:11  license.txt

评论

共有 条评论