资源简介
完整的调试成功的sift代码
代码片段和文件信息
/*
Displays image features from a file on an image
Copyright (C) 2006-2010 Rob Hess
@version 1.1.2-20100521
*/
#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 2010-05-22 03:48 sift\beaver.png
文件 42271 2010-05-22 03:49 sift\beaver.sift
文件 1033 2010-05-22 05:50 sift\dspfeat.c
文件 14956 2010-05-22 05:50 sift\imgfeatures.c
文件 3861 2010-05-22 05:50 sift\imgfeatures.h
文件 36594 2010-05-22 05:50 sift\sift.c
文件 5093 2012-08-29 14:28 sift\sift.h
文件 7551 2012-08-29 14:41 sift\utils.c
文件 5782 2010-12-08 05:12 sift\utils.h
文件 10767360 2012-08-29 15:06 sift\dspFeat\dspFeat.ncb
文件 36065280 2014-10-23 21:16 sift\dspFeat\dspFeat.sdf
文件 875 2014-10-23 21:12 sift\dspFeat\dspFeat.sln
文件 874 2012-08-29 14:27 sift\dspFeat\dspFeat.sln.old
..A..H. 25600 2014-10-23 21:16 sift\dspFeat\dspFeat.suo
..A..H. 23552 2012-08-29 15:06 sift\dspFeat\dspFeat.suo.old
文件 7710 2012-08-29 14:34 sift\dspFeat\dspFeat.vcproj
文件 1417 2012-08-29 15:06 sift\dspFeat\dspFeat.vcproj.zengyao.Administrator.user
文件 11422 2014-10-23 21:13 sift\dspFeat\dspFeat.vcxproj
文件 1503 2014-10-23 21:12 sift\dspFeat\dspFeat.vcxproj.filters
文件 143 2014-10-23 21:12 sift\dspFeat\dspFeat.vcxproj.user
文件 1590 2012-08-29 14:27 sift\dspFeat\UpgradeLog.xm
文件 2709 2014-10-23 21:12 sift\dspFeat\UpgradeLog2.xm
文件 3348 2014-10-23 21:12 sift\dspFeat\_UpgradeReport_Files\UpgradeReport.css
文件 12505 2010-05-04 01:19 sift\dspFeat\_UpgradeReport_Files\UpgradeReport.xslt
文件 69 2014-10-23 21:12 sift\dspFeat\_UpgradeReport_Files\UpgradeReport_Minus.gif
文件 71 2014-10-23 21:12 sift\dspFeat\_UpgradeReport_Files\UpgradeReport_Plus.gif
文件 40435712 2014-10-23 21:14 sift\dspFeat\ipch\dspfeat-82bfd60e\dspfeat-9567d253.ipch
文件 16432 2012-08-29 14:41 sift\dspFeat\Debug\BuildLog.htm
文件 2598 2014-10-23 21:13 sift\dspFeat\Debug\cl.command.1.tlog
文件 13972 2014-10-23 21:13 sift\dspFeat\Debug\CL.read.1.tlog
............此处省略37个文件信息
- 上一篇:存储过程自动生成工具
- 下一篇:56Classi.png
相关资源
- SIFT特征点匹配代码
- 基于SIFT特征的全景图像拼接(Qt)
- OPENCV实现ORB/SURF/SIFT + RANSAC 图像自动拼
- SIFT特征提取3篇最经典文献
- sift算法fpga实现
- SIFT算法实现及代码详解
- 论文研究-SIFT和改进的RANSAC算法在图像
- opencv实现的SIFT特征提取与匹配算法
- 基 于 SI FT特 征 的 图 像 自 动 拼 接
- 点云配准SIFT算法
- SIFT+LBP算法实现代码
- 使用GPU加速的SIFT算法
- ASIFT算法实现
- sift图像匹配
- 基于SIFT+Kmeans+SVM的场景识别报告
- 基于SIFT特征点的双目视觉定位
- SURF、SIFT、ORB特征提取opencv程序
- sift、surf、sift+ransac方法影像匹配代码
- 航拍图片全景拼接代码
- sift动态背景下实现目标跟踪
- OpenCV3.0实现SIFT特征提取+RANSAC剔除误匹
- David G.Lowe的sift算法中文翻译
- SIFT opencv 源代码
- featerMatch.rar
- sift和surf的比较
- 基于SIFT的图像拼接算法
- sift算法实现双目测距
- CUDA加速实现的sift图像配准+颜色校正
- sift和颜色直方图特征匹配
- SIFT实现特征点提取和匹配
评论
共有 条评论