|
|
|
@ -617,14 +617,14 @@ inline int hal_ni_integral(int depth, int sdepth, int sqdepth, const uchar * src |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Calculate medianBlur filter |
|
|
|
|
@param depth Depths of source and destination image |
|
|
|
|
@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 ksize Size of kernel |
|
|
|
|
*/ |
|
|
|
|
inline int hal_ni_medianBlur(int depth, const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int cn, int ksize) { return CV_HAL_ERROR_NOT_IMPLEMENTED; } |
|
|
|
|
inline int hal_ni_medianBlur(const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int depth, int cn, int ksize) { return CV_HAL_ERROR_NOT_IMPLEMENTED; } |
|
|
|
|
|
|
|
|
|
//! @cond IGNORED
|
|
|
|
|
#define cv_hal_medianBlur hal_ni_medianBlur |
|
|
|
|