DST[x,y] = SRC[xmap[x,y],ymap[x,y]] with bilinear interpolation.

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 gpuMatRemap(
	IntPtr src,
	IntPtr dst,
	IntPtr xmap,
	IntPtr ymap
)
Public Shared Sub gpuMatRemap ( _
	src As IntPtr, _
	dst As IntPtr, _
	xmap As IntPtr, _
	ymap As IntPtr _
)
public:
static void gpuMatRemap(
	IntPtr src, 
	IntPtr dst, 
	IntPtr xmap, 
	IntPtr ymap
)

Parameters

src
IntPtr
The source GpuMat. Supports CV_8UC1, CV_8UC3 source types.
dst
IntPtr
The dstination GpuMat. Supports CV_8UC1, CV_8UC3 source types.
xmap
IntPtr
The xmap. Supports CV_32FC1 map type.
ymap
IntPtr
The ymap. Supports CV_32FC1 map type.

See Also