Click or drag to resize

CudaImageTColor, TDepthResize Method

http://www.emgu.com
Resize the CudaImage. The calling GpuMat be GpuMat%lt;Byte>. If stream is specified, it has to be either 1 or 4 channels.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public CudaImage<TColor, TDepth> Resize(
	Size size,
	Inter interpolationType,
	Stream stream = null
)

Parameters

size
Type: System.DrawingSize
The new size
interpolationType
Type: Emgu.CV.CvEnumInter
The interpolation type
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).

Return Value

Type: CudaImageTColor, TDepth
A CudaImage of the new size
See Also