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
673
+
@param cn Number of channels
674
+
@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
+
@param normalize If true then result is normalized
678
+
@param border_type Border type
679
+
*/
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
+
682
+
//! @cond IGNORED
683
+
#definecv_hal_boxFilter hal_ni_boxFilter
684
+
//! @endcond
685
+
686
+
/**
687
+
@brief Blurs an image using a Gaussian filter.
688
+
@param src_data,src_step Source image
689
+
@param dst_data,dst_step Destination image
690
+
@param width,height Source image dimensions
691
+
@param depth Depth of source and destination image
692
+
@param cn Number of channels
693
+
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
694
+
@param ksize_width,ksize_height Size of kernel
695
+
@param sigmaX,sigmaY Gaussian kernel standard deviation.
696
+
@param border_type Border type
697
+
*/
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