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
707
+
@param src_data,src_step Source image
708
+
@param dst_data,dst_step Destination image
709
+
@param width,height Source image dimensions
710
+
@param cn Number of channels
711
+
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
712
+
@param dx,dy orders of the derivative x and y respectively
713
+
@param ksize Size of kernel
714
+
@param scale Scale factor for the computed derivative values
715
+
@param delta Delta value that is added to the results prior to storing them in dst
716
+
@param border_type Border type
717
+
*/
718
+
inlineinthal_ni_sobel(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, int dx, int dy, int ksize, double scale, double delta, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
719
+
720
+
//! @cond IGNORED
721
+
#definecv_hal_sobel hal_ni_sobel
722
+
//! @endcond
723
+
724
+
/**
725
+
@brief Computes Scharr filter
726
+
@param src_depth,dst_depth Depths of source and destination image
727
+
@param src_data,src_step Source image
728
+
@param dst_data,dst_step Destination image
729
+
@param width,height Source image dimensions
730
+
@param cn Number of channels
731
+
@param margin_left,margin_top,margin_right,margin_bottom Margins for source image
732
+
@param dx,dy orders of the derivative x and y respectively
733
+
@param scale Scale factor for the computed derivative values
734
+
@param delta Delta value that is added to the results prior to storing them in dst
735
+
@param border_type Border type
736
+
*/
737
+
inlineinthal_ni_scharr(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, int dx, int dy, double scale, double delta, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
738
+
739
+
//! @cond IGNORED
740
+
#definecv_hal_scharr hal_ni_scharr
741
+
//! @endcond
742
+
743
+
/**
744
+
@brief Perform Gaussian Blur and downsampling for input tile.
745
+
@param depth Depths of source and destination image
inlineinthal_ni_pyrdown(const uchar* src_data, size_t src_step, int src_width, int src_height, uchar* dst_data, size_t dst_step, int dst_width, int dst_height, int depth, int cn, int border_type) { return CV_HAL_ERROR_NOT_IMPLEMENTED; }
0 commit comments