http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Resizes the image.
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void Resize( IntPtr src, IntPtr dst, INTER interpolation, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Resize ( _ src As IntPtr, _ dst As IntPtr, _ interpolation As INTER, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Resize( IntPtr src, IntPtr dst, INTER interpolation, IntPtr stream ) |
Parameters
- src
- Type: System..::..IntPtr
The source image. Has to be GpuMat<Byte>. If stream is used, the GpuMat has to be either single channel or 4 channels.
- dst
- Type: System..::..IntPtr
The destination image.
- interpolation
- Type: Emgu.CV.CvEnum..::..INTER
The interpolation type. Supports INTER_NEAREST, INTER_LINEAR.
- stream
- Type: System..::..IntPtr
Use a stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).