Resize the GpuImage. Only TDepth of Byte is supported.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public GpuImage<TColor, TDepth> Resize(
	Size size,
	INTER interpolationType
)
Public Function Resize ( _
	size As Size, _
	interpolationType As INTER _
) As GpuImage(Of TColor, TDepth)
public:
GpuImage<TColor, TDepth>^ Resize(
	Size size, 
	INTER interpolationType
)

Parameters

size
Size
The new size
interpolationType
INTER
The interpolation type

Return Value

A GpuImage of the new size

See Also