OpenCV 现实高斯金字塔的源码,非常经典的SIFT算法


OpenCV 现实高斯金字塔的源码,非常经典的SIFT算法 OpenCV 现实高斯金字塔的源码,非常经典的SIFT算法
资源截图
代码片段和文件信息
/*
Displays image features from a file on an image

Copyright (C) 2006  Rob Hess 

@version 1.1.1-20070913
*/

#include “imgfeatures.h“
#include “utils.h“

#include 
#include 

#include 

/******************************** Globals ************************************/

char* feat_file = “..\beaver.sift“;
char* img_file = “..\beaver.png“;
int feat_type = FEATURE_LOWE;

/********************************** Main *************************************/


int main( int argc char** argv )
{
IplImage* img;
struct feature* feat;
char* name;
int n;

img = cvLoadImage( img_file 1 );
if( ! img )
fatal_error( “unable to load image from %s“ img_file );
n = import_features( feat_file feat_type &feat );
if( n == -1 )
fatal_error( “unable to import features from %s“ feat_file );
name = feat_file;

draw_features( img feat n );
cvNamedWindow( name 1 );
cvShowImage( name img );
cvWaitKey( 0 );
return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      48824  2006-11-15 21:07  显示高斯金字塔sift_openvcsift-1.1.1_20071108_wineaver.png

     文件      43721  2007-01-20 17:49  显示高斯金字塔sift_openvcsift-1.1.1_20071108_wineaver.sift

     文件      39513  2006-11-15 21:07  显示高斯金字塔sift_openvcsift-1.1.1_20071108_wineaver_xform.png

     文件       1160  2008-03-24 17:22  显示高斯金字塔sift_openvcsift-1.1.1_20071108_winChangeLog.txt

     文件       2448  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlannotated.html

     文件       8077  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmldoxygen.css

     文件       1281  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmldoxygen.png

     文件       2295  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlfiles.html

     文件        301  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlformula.repository

     文件        323  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_0.png

     文件        184  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_1.png

     文件        192  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_10.png

     文件        283  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_11.png

     文件        642  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_12.png

     文件        634  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_13.png

     文件        177  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_2.png

     文件        247  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_3.png

     文件        257  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_4.png

     文件        176  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_5.png

     文件        190  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_6.png

     文件        205  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_7.png

     文件        425  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_8.png

     文件        291  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlform_9.png

     文件       3800  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlfunctions.html

     文件       3701  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlfunctions_vars.html

     文件       7360  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlglobals.html

     文件       7048  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlglobals_func.html

     文件       1520  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlglobals_type.html

     文件      14039  2007-09-13 10:16  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlimgfeatures_8h.html

     文件       3505  2007-09-13 12:23  显示高斯金字塔sift_openvcsift-1.1.1_20071108_windocshtmlindex.html

............此处省略98个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)