/// <summary> /// Create a BoxMax filter. /// </summary> /// <param name="ksize">Size of the kernel</param> /// <param name="anchor">The center of the kernel. User (-1, -1) for the default kernel center.</param> /// <param name="borderType">The border type.</param> /// <param name="borderValue">The border value.</param> /// <param name="srcDepth">The source image depth type</param> /// <param name="srcChannels">The number of channels in the source image</param> /// <param name="dstDepth">The destination image depth type</param> /// <param name="dstChannels">The number of channels in the destination image</param> public CudaBoxFilter(DepthType srcDepth, int srcChannels, DepthType dstDepth, int dstChannels, Size ksize, Point anchor, CvEnum.BorderType borderType = BorderType.Default, MCvScalar borderValue = new MCvScalar()) { _ptr = CudaInvoke.cudaCreateBoxFilter(CvInvoke.MakeType(srcDepth, srcChannels), CvInvoke.MakeType(dstDepth, dstChannels), ref ksize, ref anchor, borderType, ref borderValue, ref _sharedPtr); }