资源简介
很好的用纯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的程序
相关资源
- 基于数字图像处理的孢子特征提取
- 基于fast的图像拼接
- 图像纹理特征提取程序
- 基于TensorFlow的Faster_R-CNN源码
- 利用K-L变换进行特征提取的实验
- 肌电特征提取
- 第四套:FastDFS 分布式文件系统集群与
- 一种简单有效的手写体数字特征提取
- 2D Fast Marching Computations
- PPG特征提取
- Faster RCNN pytroch代码
- 基于OPENCV的WLD特征提取程序
- fast marching method
- 图像特征提取代码HOG、LBP、Haar、Hu矩
- 基于小波变换和时域能量熵的P300特征
- Faster-RCNN 代码
- FastICA_2.5.zip
- 基于声音信号的特征提取方法的研究
- 用Delphi 2007编写的fastreport Demo
- UltraFast 设计方法 快捷参考指南 (U
- 氨基酸符号序列转换为FASTA格式的蛋白
- 一个简单的delphi fastreport打印
- 脉搏波信号时域特征提取与算法的研
- FastDFS配置文件详解
- VGGnet_fast_rcnn_iter_70000.ckpt133563
- fastdfs_client.zip
- FastDFS的Go客户端fdfs_client.zip
- 尺度FAST结合改进LBP的特征匹配方法
- 四种积分双谱算法
- adb工具完整版带fastboot驱动
评论
共有 条评论