http://www.emgu.com
Produce domain transform filtering operation on source image.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void Filter(
IInputArray src,
IOutputArray dst,
DepthType dDepth = DepthType.Default
)
Public Sub Filter (
src As IInputArray,
dst As IOutputArray,
Optional dDepth As DepthType = DepthType.Default
)
public:
void Filter(
IInputArray^ src,
IOutputArray^ dst,
DepthType dDepth = DepthType::Default
)
member Filter :
src : IInputArray *
dst : IOutputArray *
?dDepth : DepthType
(* Defaults:
let _dDepth = defaultArg dDepth DepthType.Default
*)
-> unit
Parameters
- 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
Destination image. - dDepth (Optional)
- Type: Emgu.CV.CvEnumDepthType
Optional depth of the output image. dDepth can be set to Default, which will be equivalent to src.depth().
See Also