登录
首页 » matlab » sift-match

sift-match

于 2012-05-28 发布 文件大小:653KB
0 255
下载积分: 1 下载次数: 268

代码说明:

  MATLAB工具sift实现图像拼接,上下拼接(MATLAB tool sift image stitching, stitching up and down)

文件列表:

sift-match
..........\appendimages.m,461,2005-07-07
..........\bounds.m,605,2011-03-14



..........\har.m,1546,2011-06-09
..........\harris_improve.m,5046,2011-05-31
..........\hnormalise.m,1007,2010-04-16
..........\homogdist2d.m,778,2010-05-04
..........\homography2d.m,2493,2010-04-16
..........\homoTrans.m,879,2011-05-31
..........\imTrans.m,3801,2010-05-19
..........\iscolinear.m,2318,2010-04-16
..........\isdegenerate.m,815,2010-05-04

..........\main.m,256,2011-05-31
..........\maincai.m,244,2011-05-31
..........\match.m,4664,2011-06-01
..........\match12.m,3455,2011-06-09
..........\normalise.m,2312,2010-04-16
..........\normalise2dpts.m,2361,2010-04-16

..........\pin2.jpg,160703,2011-05-31
..........\qqq.m,629,2011-06-02
..........\randomsample.m,2218,2010-04-16
..........\ransac.m,9877,2011-05-31
..........\ransacfithomographys.m,3451,2011-05-31
..........\showkeys.m,1699,2011-05-31
..........\sift.m,2489,2011-05-31
..........\siftWin32.exe,94208,2005-07-07
..........\transformImage.m,2336,2011-03-14

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • zhangwen
    两个掌纹识别的MATLAB程序,非常有用(Are two palmprint identification MATLAB program, very useful)
    2011-05-21 18:21:23下载
    积分:1
  • avi-to-yuv
    视频格式转换 这里主要是mpeg格式 转化为avi,yuv等多种格式(Video format conversion here is mainly converted to avi mpeg format)
    2013-06-20 22:51:19下载
    积分:1
  • MosaicKit(matlab)
    说明:  把两幅有相互重叠部分的图片拼接在一起,合成一副大的图片(There is some overlap between the two pictures spliced together, synthesized a large picture)
    2010-03-16 16:16:29下载
    积分:1
  • StringMatch
    带通配符的字符串匹配,多重匹配,支持通配符“*”,“?”(String matching with wildcards, multiple matches, supports wildcards " *" , " ?" )
    2014-01-16 10:33:12下载
    积分:1
  • StereoVisionVS2008
    双目立体视觉,采用两张图像恢复三维形状,外国人的一个开源项目。(System Prototype to make 3D reconstruction solution using stereo images. It works with common cameras and not require large amount of memory during the images processing. It provides a low cost solution to educational environments with low budgets. )
    2010-08-08 13:43:57下载
    积分:1
  • work
    一种基于DCT变换的数字水印算法的实现过程,水印为伪随机序列,包括嵌入和提取两个过程。其中textmark.m为攻击实验代码。(DCT-based Digital Watermarking Algorithm Transform realize the process, the watermark for the pseudo-random sequence, including both the process of embedding and extraction. Textmark.m experiment in which the attack code.)
    2008-04-11 09:28:18下载
    积分:1
  • InSAR相位解缠代码
    说明:  干涉SAR(InSAR)相位解缠处理代码,包括枝切法及质量图指导法,代码为matlab(Interference SAR(InSAR) phase unwrapping code, including the branch cut method and quality chart guidance method, the code is MATLAB)
    2021-04-12 08:48:57下载
    积分:1
  • watermarkmatlab
    matlab嵌入水印源程序 在matlab中实现数字水印的嵌入,提取和检测(Matlab source watermark embedded in Matlab achieve digital watermark embedding and extraction and detection)
    2006-06-01 10:12:20下载
    积分:1
  • GeometricVersion3
    课程设计 几何图形(满分50 分) 版本1:满分10 分 设计抽象类GeometricObject 及其子类Triangle 和Circle。 GeometricObject 类设计要求如下: ■ 一个名为color 的Color 类型的私有数据域,表示对象的颜色。 ■ 一个名为filled 的Boolean 类型的私有数据域,表示对象是否填充颜色。 ■ 一个名为dateCreated 的Date 类型的私有数据域,表示对象的创建日期。 ■ 一个无参构造方法。 ■ 一个能创建特定color 和filled 的有参构造方法。 ■ 相关数据域的访问器和修改器。 ■ 两个个名为draw 和erase 的抽象方法。 ■ 一个名为getArea 的抽象方法。 ■ 一个名为getPerimeter 的抽象方法。 ■ 重写toString 方法。 Triangle 类设计要求如下: ■ 三个名为side1、side2 和 side3 的double 类型的私有数据域表示三角形的三条边。它 们的默认值是1.0。要求三个数据域保留2 位小数。 ■ 一个无参的构造方法创建默认三角形。 ■ 一个能创建带指定side1、side2 和 side3 的有参构造方法。 ■ 所有三个数据域的访问器和修改器方法。 ■ 父类抽象方法的实现。 ■ 重写toString 方法。 Circle 类(Curriculum Design Geometry (out of 50) Version 1: 10 points Design an abstract class and its subclasses GeometricObject Triangle and Circle. GeometricObject class design requirements are as follows: ■ a named color of the Color type private data field that indicates the object s color. ■ a Boolean type called filled private data field that indicates whether the object fill color. ■ Date type named dateCreated private data field, which means that the object was created. ■ a no-argument constructor. ■ one can create a specific color and filled in with arg constructor. ■ Related data field accessor and modifier. ■ two months called draw and erase the abstract methods. ■ an abstract method named getArea. ■ an abstract method named getPerimeter. ■ overridden toString method. Triangle class design requirements are as follows: ■ three named side1, side2 and a double side3 private data field indicates the type of triangle with three sides. It Our default value is 1.0. Requires)
    2020-12-10 08:59:18下载
    积分:1
  • SVD
    基于SVD的图像复制粘贴篡改检查算法源代码,仅供参考(svd-based image copy and paste tamper check algorithm source code, for reference only)
    2017-03-13 23:48:06下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载