http://www.emgu.com
Performs downsampling step of Gaussian pyramid decomposition.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void PyrDown(
IInputArray src,
IOutputArray dst,
Stream stream = null
)
Public Shared Sub PyrDown (
src As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void PyrDown(
IInputArray^ src,
IOutputArray^ dst,
Stream^ stream = nullptr
)
static member PyrDown :
src : IInputArray *
dst : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source CudaImage. - dst
- Type: Emgu.CVIOutputArray
The destination CudaImage, should have 2x smaller width and height than the source. - 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