CudaDisparityBilateralFilterApply Method |
http://www.emgu.com
Apply the filter to the disparity image
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Apply(
IInputArray disparity,
IInputArray image,
IOutputArray dst,
Stream stream = null
)
Public Sub Apply (
disparity As IInputArray,
image As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Apply(
IInputArray^ disparity,
IInputArray^ image,
IOutputArray^ dst,
Stream^ stream = nullptr
)
member Apply :
disparity : IInputArray *
image : IInputArray *
dst : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- disparity
- Type: Emgu.CVIInputArray
The input disparity map - image
- Type: Emgu.CVIInputArray
The image - dst
- Type: Emgu.CVIOutputArray
The output disparity map, should have the same size as the input disparity map - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also