OpenCV  4.1.0
Open Source Computer Vision
Functions
Features2d_hal_interface

Functions

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, inttype)
 Detects corners using the FAST algorithm.
 
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)
 Detects corners using the FAST algorithm, returns mask.
 
int hal_ni_FAST_NMS (const uchar *src_data, size_t src_step, uchar *dst_data, size_t dst_step, int width, int height)
 Non-maximum suppression for FAST_9_16.
 

Detailed Description

Note
Define your functions to override default implementations:
#undef hal_add8u
#define hal_add8u my_add8u

Function Documentation

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

Detects corners using the FAST algorithm.

Parameters
src_data,src_stepSource image
width,heightSource image dimensions
keypoints_dataPointer to keypoints
keypoints_countCount of keypoints
thresholdThreshold for keypoint
nonmax_suppressionIndicates if make nonmaxima suppression or not.
typeFAST type
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

Detects corners using the FAST algorithm, returns mask.

Parameters
src_data,src_stepSource image
dst_data,dst_stepDestination mask
width,heightSource image dimensions
typeFAST type
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

Non-maximum suppression for FAST_9_16.

Parameters
src_data,src_stepSource mask
dst_data,dst_stepDestination mask after NMS
width,heightSource mask dimensions