资源简介
很好的用纯c写的源码 大家可以参考下

代码片段和文件信息
#include
#include “fast.h“
xy* fast9_detect_nonmax(const byte* im int xsize int ysize int stride int b int* ret_num_corners)
{
xy* corners;
int num_corners;
int* scores;
xy* nonmax;
corners = fast9_detect(im xsize ysize stride b &num_corners);
scores = fast9_score(im stride corners num_corners b);
nonmax = nonmax_suppression(corners scores num_corners ret_num_corners);
free(corners);
free(scores);
return nonmax;
}
xy* fast10_detect_nonmax(const byte* im int xsize int ysize int stride int b int* ret_num_corners)
{
xy* corners;
int num_corners;
int* scores;
xy* nonmax;
corners = fast10_detect(im xsize ysize stride b &num_corners);
scores = fast10_score(im stride corners num_corners b);
nonmax = nonmax_suppression(corners scores num_corners ret_num_corners);
free(corners);
free(scores);
return nonmax;
}
xy* fast11_detect_nonmax(const byte* im int xsize int ysize int stride int b int* ret_num_corners)
{
xy* corners;
int num_corners;
int* scores;
xy* nonmax;
corners = fast11_detect(im xsize ysize stride b &num_corners);
scores = fast11_score(im stride corners num_corners b);
nonmax = nonmax_suppression(corners scores num_corners ret_num_corners);
free(corners);
free(scores);
return nonmax;
}
xy* fast12_detect_nonmax(const byte* im int xsize int ysize int stride int b int* ret_num_corners)
{
xy* corners;
int num_corners;
int* scores;
xy* nonmax;
corners = fast12_detect(im xsize ysize stride b &num_corners);
scores = fast12_score(im stride corners num_corners b);
nonmax = nonmax_suppression(corners scores num_corners ret_num_corners);
free(corners);
free(scores);
return nonmax;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1736 2009-01-11 21:08 FAST\fast.c
文件 1632 2009-01-11 21:08 FAST\fast.h
文件 149608 2009-01-11 21:08 FAST\fast_10.c
文件 124822 2009-01-11 21:08 FAST\fast_11.c
文件 99204 2009-01-11 21:08 FAST\fast_12.c
文件 189198 2009-01-11 21:08 FAST\fast_9.c
文件 2891 2009-01-11 21:08 FAST\nonmax.c
目录 0 2014-04-06 17:53 FAST
----------- --------- ---------- ----- ----
569091 8
- 上一篇:模糊综合评价模型加笔记
- 下一篇:用430控制ADS8361的程序
相关资源
- 核主成分分析方法——特征提取,去
- 基于Gabor滤波器的图像纹理特征提取
- USB网卡驱动 USB2.0 TO Fast Ethernet Adapte
- 轻量级文件服务器Fdfs搭建(fastDFS+n
- 基于IBM eserver x440+FAStT700+VMware的系统整
- fastreport 向下合并单元格 修改文件
- IBM Tivoli Storage Manager FastBack为Windows提
- IBM TotalStorage FAStT200存储阵列
- IBM TotalStorage FAStT900存储阵列
- fastlib——十分好用的画图工具
- Promise FastTrak SX4060产品手册
- Promise FastTrak TX2300产品手册
- Promise FastTrak SX4300产品手册
- Promise FastTrak TX4000产品手册
- Promise FastTrak TX4310产品手册
- frcc.exe fastreport编译中文没乱码
- IBM TotalStorage FAStT600存储服务器
- 索尼LT26i fastboot驱动 官方版
- 论文研究-基于优化Gabor滤波器和GMRF的
- opencv实现的sift算法源码,包含了图像
- FastReport.Net V2014.4.8 For .Net2.0
- hog特征提取,c版本代码
- SIFT特征提取+匹配
- faster rcnn流程图
- 常用故障特征提取方法_高正明
- 数学建模美国赛2004MCM-A Faster QuickPas
- 数学建模美国赛2004MCM-A Faster QuickPas
- 基于LBP算法的人脸识别研究
- fastreport.studio.4.6.8破解版
- UltraFast 设计方法时序收敛快捷参考指
评论
共有 条评论