|  | AdaptiveManifoldFilterFilter Method  | 
 
            Apply high-dimensional filtering using adaptive manifolds.
            
 
    Namespace: 
   OpenCvSharp.XImgProc
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
 Syntax
Syntaxpublic virtual void Filter(
	InputArray src,
	OutputArray dst,
	InputArray joint = null
)
Public Overridable Sub Filter ( 
	src As InputArray,
	dst As OutputArray,
	Optional joint As InputArray = Nothing
)
public:
virtual void Filter(
	InputArray^ src, 
	OutputArray^ dst, 
	InputArray^ joint = nullptr
)
abstract Filter : 
        src : InputArray * 
        dst : OutputArray * 
        ?joint : InputArray 
(* Defaults:
        let _joint = defaultArg joint null
*)
-> unit 
override Filter : 
        src : InputArray * 
        dst : OutputArray * 
        ?joint : InputArray 
(* Defaults:
        let _joint = defaultArg joint null
*)
-> unit Parameters
- src
- Type: OpenCvSharpInputArray
 filtering image with any numbers of channels.
- dst
- Type: OpenCvSharpOutputArray
 output image.
- joint (Optional)
- Type: OpenCvSharpInputArray
 optional joint (also called as guided) image with any numbers of channels.
 See Also
See Also