http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
DST[x,y] = SRC[xmap[x,y],ymap[x,y]] with bilinear interpolation.
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 Remap( IntPtr src, IntPtr dst, IntPtr xmap, IntPtr ymap ) |
Visual Basic |
---|
Public Shared Sub Remap ( _ src As IntPtr, _ dst As IntPtr, _ xmap As IntPtr, _ ymap As IntPtr _ ) |
Visual C++ |
---|
public: static void Remap( IntPtr src, IntPtr dst, IntPtr xmap, IntPtr ymap ) |
Parameters
- src
- Type: System..::..IntPtr
The source GpuMat. Supports CV_8UC1, CV_8UC3 source types.
- dst
- Type: System..::..IntPtr
The dstination GpuMat. Supports CV_8UC1, CV_8UC3 source types.
- xmap
- Type: System..::..IntPtr
The xmap. Supports CV_32FC1 map type.
- ymap
- Type: System..::..IntPtr
The ymap. Supports CV_32FC1 map type.