Resizes the image. supports CV_8UC1, CV_8UC4 types.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void gpuMatResize(
	IntPtr src,
	IntPtr dst,
	INTER interpolation
)
Public Shared Sub gpuMatResize ( _
	src As IntPtr, _
	dst As IntPtr, _
	interpolation As INTER _
)
public:
static void gpuMatResize(
	IntPtr src, 
	IntPtr dst, 
	INTER interpolation
)

Parameters

src
IntPtr
The source image
dst
IntPtr
The destination image
interpolation
INTER
The interpolation type. Supports INTER_NEAREST, INTER_LINEAR.

See Also