http://www.emgu.com
Produce domain transform filtering operation on source image.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic void Filter(
IInputArray src,
IOutputArray dst,
DepthType dDepth = -1
)
Public Sub Filter (
src As IInputArray,
dst As IOutputArray,
Optional dDepth As DepthType = -1
)
public:
void Filter(
IInputArray^ src,
IOutputArray^ dst,
DepthType^ dDepth = -1
)
member Filter :
src : IInputArray *
dst : IOutputArray *
?dDepth : DepthType
(* Defaults:
let _dDepth = defaultArg dDepth -1
*)
-> 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