|
|
|
@ -652,14 +652,16 @@ inline int hal_ni_adaptiveThreshold(const uchar* src_data, size_t src_step, ucha |
|
|
|
|
@param src_data,src_step Source image |
|
|
|
|
@param dst_data,dst_step Destination image |
|
|
|
|
@param width,height Source image dimensions |
|
|
|
|
@param depth Depths of source and destination image |
|
|
|
|
@param cn Number of channels |
|
|
|
|
@param thresh Threshold value |
|
|
|
|
@param maxValue Value assigned to the pixels for which the condition is satisfied |
|
|
|
|
@param thresholdType Thresholding type |
|
|
|
|
*/ |
|
|
|
|
inline int hal_ni_thresholdBin8u(const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, double thresh, double maxValue, int thresholdType) { return CV_HAL_ERROR_NOT_IMPLEMENTED; } |
|
|
|
|
inline int hal_ni_threshold(const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int depth, int cn, double thresh, double maxValue, int thresholdType) { return CV_HAL_ERROR_NOT_IMPLEMENTED; } |
|
|
|
|
|
|
|
|
|
//! @cond IGNORED
|
|
|
|
|
#define cv_hal_thresholdBin8u hal_ni_thresholdBin8u |
|
|
|
|
#define cv_hal_threshold hal_ni_threshold |
|
|
|
|
//! @endcond
|
|
|
|
|
|
|
|
|
|
//! @}
|
|
|
|
|