sift-win

所属分类:图形图像处理
开发工具:Visual C++
文件大小:3695KB
下载次数:135
上传日期:2007-08-09 17:48:04
上 传 者alan2019
说明:  sift算法的代码,可以进行特征点的提取和匹配,速度不如GPU的快
(sift algorithm code, can feature points extraction and matching, slower than GPU fast)

文件列表:
sift-1.1.1_20070330_win\beaver.png (48824, 2006-11-15)
sift-1.1.1_20070330_win\beaver.sift (43721, 2007-05-09)
sift-1.1.1_20070330_win\beaver_xform.png (39513, 2007-05-09)
sift-1.1.1_20070330_win\ChangeLog.txt (672, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\annotated.html (2110, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\doxygen.css (8055, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\doxygen.png (1281, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\files.html (2177, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\formula.repository (301, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_0.png (323, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_1.png (184, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_10.png (192, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_11.png (283, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_12.png (642, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_13.png (634, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_2.png (177, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_3.png (247, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_4.png (257, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_5.png (176, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_6.png (190, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_7.png (205, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_8.png (425, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\form_9.png (291, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\functions.html (3761, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\functions_vars.html (3662, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\globals.html (8681, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\globals_defs.html (2453, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\globals_enum.html (1670, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\globals_func.html (7136, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\globals_type.html (1644, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\imgfeatures_8h.html (12758, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\index.html (3510, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\kdtree_8h.html (13422, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\minpq_8h.html (10393, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\sift_8h.html (13741, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\structdetection__data.html (1505, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\structfeature.html (9775, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\structkd__node.html (4877, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\structmin__pq.html (1979, 2007-05-09)
sift-1.1.1_20070330_win\docs\html\structpq__node.html (1488, 2007-05-09)
... ...

Contents: 1. Intro 2. Requirements 3. Running 4. License 1. Intro This is a collection of code I've put together to detect SIFT features in images. It includes a SIFT function library as well as some executables to detect, match, and display keypoints. For more information on SIFT, refer to the paper by Lowe: Lowe, D. Distinctive image features from scale-invariant keypoints. International Journal of Computer Vision, 60, 2 (2004), pp.91--110. Or see Lowe's website: http://www.cs.ubc.ca/~lowe/keypoints/ Some of the code also works with affine-invariant features from the code by the VGG at oxford: http://www.robots.ox.ac.uk:5000/~vgg/research/affine/index.html Also included is a library containing functions to compute transforms from image features using RANSAC. See match.c for an example of how to use the RANSAC functions. /************************************************************************/ 2. Requirements All code in this package requires the OpenCV library (known working version is 1.0.0): http://sourceforge.net/projects/opencvlibrary/ Some functions require the Gnu Scientific Library (GSL) (known working version is 1.8): (Linux) http://www.gnu.org/software/gsl/ (Windows) http://gnuwin32.sourceforge.net/packages/gsl.htm /************************************************************************/ 3. Running The following is a list of directories that contain VC++.NET projects and the functions of the projects: *siftFeat -- Detect SIFT features *match -- Find and match SIFT features in two images *dspFeat -- Display features from a file You can mess with the global variables in each of the main C files to adjust parameters, including input and output files. You might also have to adjust the project properties depending on how you installed OpenCV and GSL. /************************************************************************/ 4. License The SIFT algorithm is Patented in the U.S. by the University of British Columbia. Thus, the SIFT feature detection code in this package may not be used in any commercial products without permission from UBC. All other code in this package is Licensed under the GPLv2. See the files LICENSE.ubc.txt and LICENSE.txt for more info.

近期下载者

相关文件


收藏者