XImgprocInvokeDtFilter Method |
http://www.emgu.com
Simple one-line Domain Transform filter call.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void DtFilter(
IInputArray guide,
IInputArray src,
IOutputArray dst,
double sigmaSpatial,
double sigmaColor,
DtFilterType mode,
int numIters = 3
)
Public Shared Sub DtFilter (
guide As IInputArray,
src As IInputArray,
dst As IOutputArray,
sigmaSpatial As Double,
sigmaColor As Double,
mode As DtFilterType,
Optional numIters As Integer = 3
)
public:
static void DtFilter(
IInputArray^ guide,
IInputArray^ src,
IOutputArray^ dst,
double sigmaSpatial,
double sigmaColor,
DtFilterType mode,
int numIters = 3
)
static member DtFilter :
guide : IInputArray *
src : IInputArray *
dst : IOutputArray *
sigmaSpatial : float *
sigmaColor : float *
mode : DtFilterType *
?numIters : int
(* Defaults:
let _numIters = defaultArg numIters 3
*)
-> unit
Parameters
- guide
- Type: Emgu.CVIInputArray
guided image (also called as joint image) with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels. - src
- Type: Emgu.CVIInputArray
filtering image with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels. - dst
- Type: Emgu.CVIOutputArray
output image - sigmaSpatial
- Type: SystemDouble
parameter in the original article, it's similar to the sigma in the coordinate space into bilateralFilter. - sigmaColor
- Type: SystemDouble
parameter in the original article, it's similar to the sigma in the color space into bilateralFilter. - mode
- Type: Emgu.CV.XImgprocDtFilterType
Dt filter mode - numIters (Optional)
- Type: SystemInt32
optional number of iterations used for filtering, 3 is quite enough.
See Also