http://www.emgu.com
Apply the cuda filter
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic void Apply(
IInputArray image,
IOutputArray dst,
Stream stream = null
)
Public Sub Apply (
image As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Apply(
IInputArray^ image,
IOutputArray^ dst,
Stream^ stream = nullptr
)
member Apply :
image : IInputArray *
dst : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The source CudaImage where the filter will be applied to - dst
- Type: Emgu.CVIOutputArray
The destination CudaImage - 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