@@ -670,12 +670,12 @@ inline int hal_ni_threshold(const uchar* src_data, size_t src_step, uchar* dst_d
670
670
@param src_data,src_step Source image
671
671
@param dst_data,dst_step Destination image
672
672
@param width,height Source image dimensions
673
+ @param cn Number of channels
673
674
@param margins Margins for source image
674
675
@param ksize Size of kernel
675
676
@param anchor Anchor point
676
677
@param normalize If true then result is normalized
677
678
@param border_type Border type
678
- @param cn Number of channels
679
679
*/
680
680
inline int hal_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; }
681
681
@@ -685,15 +685,15 @@ inline int hal_ni_boxFilter(int src_depth, int dst_depth, const uchar* src_data,
685
685
686
686
/* *
687
687
@brief Blurs an image using a Gaussian filter.
688
- @param src_depth,dst_depth Depths of source and destination image
688
+ @param depth Depth of source and destination image
689
689
@param src_data,src_step Source image
690
690
@param dst_data,dst_step Destination image
691
691
@param width,height Source image dimensions
692
+ @param cn Number of channels
692
693
@param margins Margins for source image
693
694
@param ksize Size of kernel
694
695
@param sigmaX,sigmaY Gaussian kernel standard deviation.
695
696
@param border_type Border type
696
- @param cn Number of channels
697
697
*/
698
698
inline int hal_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; }
699
699
0 commit comments