You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
675
+
@param ksize_width,ksize_height Size of kernel
676
+
@param anchor_x,anchor_y Anchor point
677
677
@param normalize If true then result is normalized
678
678
@param border_type Border type
679
679
*/
680
-
inlineinthal_ni_boxFilter(int src_depth, int dst_depth, const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int cn, CvRect margins, CvSize ksize, CvPoint anchor, bool normalize, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
680
+
inlineinthal_ni_boxFilter(int src_depth, int dst_depth, const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int cn, int margin_left, int margin_top, int margin_right, int margin_bottom, size_t ksize_width, size_t ksize_height, int anchor_x, int anchor_y, bool normalize, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
681
681
682
682
//! @cond IGNORED
683
683
#definecv_hal_boxFilter hal_ni_boxFilter
@@ -690,12 +690,12 @@ inline int hal_ni_boxFilter(int src_depth, int dst_depth, const uchar* src_data,
690
690
@param dst_data,dst_step Destination image
691
691
@param width,height Source image dimensions
692
692
@param cn Number of channels
693
-
@param margins Margins for source image
694
-
@param ksize Size of kernel
693
+
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
694
+
@param ksize_width,ksize_height Size of kernel
695
695
@param sigmaX,sigmaY Gaussian kernel standard deviation.
696
696
@param border_type Border type
697
697
*/
698
-
inlineinthal_ni_gaussianBlur(int depth, const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int cn, CvRect margins, CvSize ksize, double sigmaX, double sigmaY, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
698
+
inlineinthal_ni_gaussianBlur(int depth, const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int cn, size_t margin_left, size_t margin_top, size_t margin_right, size_t margin_bottom, size_t ksize_width, size_t ksize_height, double sigmaX, double sigmaY, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
0 commit comments