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 src_depth,dst_depth Depths of source and destination image
670
669
@param src_data,src_step Source image
671
670
@param dst_data,dst_step Destination image
672
671
@param width,height Source image dimensions
672
+
@param src_depth,dst_depth Depths of source and destination image
673
673
@param cn Number of channels
674
674
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
675
675
@param ksize_width,ksize_height Size of kernel
676
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, 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; }
680
+
inlineinthal_ni_boxFilter(const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int src_depth, int dst_depth, 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
684
684
//! @endcond
685
685
686
686
/**
687
687
@brief Blurs an image using a Gaussian filter.
688
-
@param depth Depth of source and destination image
689
688
@param src_data,src_step Source image
690
689
@param dst_data,dst_step Destination image
691
690
@param width,height Source image dimensions
691
+
@param depth Depth of source and destination image
692
692
@param cn Number of channels
693
693
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
694
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, 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; }
698
+
inlineinthal_ni_gaussianBlur(const uchar* src_data, size_t src_step, uchar* dst_data, size_t dst_step, int width, int height, int depth, 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