CudaInvokeGpuMatResize Method |
http://www.emgu.com
Resize the GpuMat
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void GpuMatResize(
IntPtr src,
IntPtr dst,
Inter interpolation,
IntPtr stream
)
Public Shared Sub GpuMatResize (
src As IntPtr,
dst As IntPtr,
interpolation As Inter,
stream As IntPtr
)
public:
static void GpuMatResize(
IntPtr src,
IntPtr dst,
Inter interpolation,
IntPtr stream
)
static member GpuMatResize :
src : IntPtr *
dst : IntPtr *
interpolation : Inter *
stream : IntPtr -> unit
Parameters
- src
- Type: SystemIntPtr
The input GpuMat - dst
- Type: SystemIntPtr
The resulting GpuMat - interpolation
- Type: Emgu.CV.CvEnumInter
The interpolation type - stream
- Type: SystemIntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).
See Also