• 大小: 9.66MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-25
  • 语言: 其他
  • 标签: OpenCV  

资源简介

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_openvc\sift-1.1.1_20071108_win\beaver.png

     文件      43721  2007-01-20 17:49  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\beaver.sift

     文件      39513  2006-11-15 21:07  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\beaver_xform.png

     文件       1160  2008-03-24 17:22  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\ChangeLog.txt

     文件       2448  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\annotated.html

     文件       8077  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\doxygen.css

     文件       1281  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\doxygen.png

     文件       2295  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\files.html

     文件        301  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\formula.repository

     文件        323  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_0.png

     文件        184  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_1.png

     文件        192  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_10.png

     文件        283  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_11.png

     文件        642  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_12.png

     文件        634  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_13.png

     文件        177  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_2.png

     文件        247  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_3.png

     文件        257  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_4.png

     文件        176  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_5.png

     文件        190  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_6.png

     文件        205  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_7.png

     文件        425  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_8.png

     文件        291  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\form_9.png

     文件       3800  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\functions.html

     文件       3701  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\functions_vars.html

     文件       7360  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\globals.html

     文件       7048  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\globals_func.html

     文件       1520  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\globals_type.html

     文件      14039  2007-09-13 10:16  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\imgfeatures_8h.html

     文件       3505  2007-09-13 12:23  显示高斯金字塔sift_openvc\sift-1.1.1_20071108_win\docs\html\index.html

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

评论

共有 条评论