Click or drag to resize
CudaInvokePyrUp Method
http://www.emgu.com
Performs up-sampling step of Gaussian pyramid decomposition.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void PyrUp(
	IInputArray src,
	IOutputArray dst,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The source CudaImage.
dst
Type: Emgu.CVIOutputArray
The destination image, 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