OpenSURF (including Image Warp)

版本 1.5.0.0 (705.6 KB) 作者: Dirk-Jan Kroon
SURF (Speeded Up Robust Features) image feature point detection / matching, as in SIFT
26.3K 次下载
更新时间 2010/9/6

查看许可证

Description:
This function OPENSURF, is an implementation of SURF (Speeded Up Robust Features). SURF will detect landmark points in an image, and describe the points by a vector which is robust against (a little bit) rotation ,scaling and noise. It can be used in the same way as SIFT (Scale-invariant feature transform) which is patented. Thus to align (register) two or more images based on corresponding points (see example3.m), or make 3D reconstructions.

Implementation:
This Matlab implementation of Surf is a Matlab optimized translation of the OpenSurf C# code of Chris Evans, and gives exactly the same answer. Chris Evans wrote one of the best, well structured all inclusive SURF implementations. On his site you can find Evaluations of OpenSURF and the C# and C++ code. http://www.chrisevansdev.com/opensurf/
Chris Evans gave me permisson to publish this code under the (Mathworks) BSD license.

.
Usage :
Ipts = OpenSurf(I, Options)

inputs,
I : The 2D input image color or greyscale
(optional)
Options : A struct with options (see below)

.
Examples:
Type "help OpenSurf" or "doc OpenSurf" for a basic surf example, and try the example2.m and example3.m for more advanced point matching and affine registration examples.

.
Note:
If you want to use opensurf for nonrigid registration, see "B-spline Grid, Image and Point based Registration" on Mathworks.

.
Please leave a comment if you find a bug, like the code, or have a question. Visit the page of Chris Evans if you want more detailed information about the algorithm.

引用格式

Dirk-Jan Kroon (2024). OpenSURF (including Image Warp) (https://www.mathworks.com/matlabcentral/fileexchange/28300-opensurf-including-image-warp), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2010a
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.5.0.0

Updated example see comment "Evgeny". Added Affine image transformation example.

1.4.0.0

Now always works for small images. Added verbose information option.

1.2.0.0

Fixed small bug in paint function

1.1.0.0

Speed Up 10x ...

1.0.0.0