OpenCV 4.10.0
开源计算机视觉库
加载中...
搜索中...
无匹配项
| 函数

详细描述

注意
定义你的函数以覆盖默认实现
#undef hal_add8u
#define hal_add8u my_add8u

结构体 cvhalKeyPoint
 

函数

int hal_ni_FAST (const uchar *src_data, size_t src_step, int width, int height, uchar *keypoints_data, size_t *keypoints_count, int threshold, bool nonmax_suppression, int type)
 使用 FAST 算法检测角点。
 
int hal_ni_FAST_dense (const uchar *src_data, size_t src_step, uchar *dst_data, size_t dst_step, int width, int height, cv::FastFeatureDetector::DetectorType type)
 使用 FAST 算法检测角点,返回掩码。
 
int hal_ni_FAST_NMS (const uchar *src_data, size_t src_step, uchar *dst_data, size_t dst_step, int width, int height)
 FAST_9_16 的非极大值抑制。
 

快速特征检测器类型

另请参阅
cv::FastFeatureDetector
#define CV_HAL_TYPE_5_8   0
 
#define CV_HAL_TYPE_7_12   1
 
#define CV_HAL_TYPE_9_16   2
 

宏定义文档

◆ CV_HAL_TYPE_5_8

#define CV_HAL_TYPE_5_8   0

◆ CV_HAL_TYPE_7_12

#define CV_HAL_TYPE_7_12   1

◆ CV_HAL_TYPE_9_16

#define CV_HAL_TYPE_9_16   2

函数文档

◆ hal_ni_FAST()

int hal_ni_FAST ( const uchar src_data,
size_t  src_step,
int  width,
int  height,
uchar keypoints_data,
size_t *  keypoints_count,
int  threshold,
bool  nonmax_suppression,
int  type 
)
inline

#include <features2d/src/hal_replacement.hpp>

使用 FAST 算法检测角点。

参数
src_data源图像数据
src_step源图像步长
width源图像宽度
height源图像高度
keypoints_data指向关键点的指针
keypoints_count关键点数量
threshold关键点阈值
nonmax_suppression指示是否进行非极大值抑制。
typeFAST 类型

◆ hal_ni_FAST_dense()

int hal_ni_FAST_dense ( const uchar src_data,
size_t  src_step,
uchar dst_data,
size_t  dst_step,
int  width,
int  height,
cv::FastFeatureDetector::DetectorType  type 
)
inline

#include <features2d/src/hal_replacement.hpp>

使用 FAST 算法检测角点,返回掩码。

参数
src_data源图像数据
src_step源图像步长
dst_data目标掩码数据
dst_step目标掩码步长
width源图像宽度
height源图像高度
typeFAST 类型

◆ hal_ni_FAST_NMS()

int hal_ni_FAST_NMS ( const uchar src_data,
size_t  src_step,
uchar dst_data,
size_t  dst_step,
int  width,
int  height 
)
inline

#include <features2d/src/hal_replacement.hpp>

FAST_9_16 的非极大值抑制。

参数
src_data,src_step源掩码
dst_data,dst_stepNMS 后的目标掩码
width,height源掩码尺寸