Click or drag to resize
CudaInvokeRemap Method
http://www.emgu.com
DST[x,y] = SRC[xmap[x,y],ymap[x,y]] with bilinear interpolation.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void Remap(
	IInputArray src,
	IOutputArray dst,
	IInputArray xmap,
	IInputArray ymap,
	Inter interpolation,
	BorderType borderMode = BorderType.Constant,
	MCvScalar borderValue = null,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The source GpuMat. Supports CV_8UC1, CV_8UC3 source types.
dst
Type: Emgu.CVIOutputArray
The dstination GpuMat. Supports CV_8UC1, CV_8UC3 source types.
xmap
Type: Emgu.CVIInputArray
The xmap. Supports CV_32FC1 map type.
ymap
Type: Emgu.CVIInputArray
The ymap. Supports CV_32FC1 map type.
interpolation
Type: Emgu.CV.CvEnumInter
Interpolation type.
borderMode (Optional)
Type: Emgu.CV.CvEnumBorderType
Border mode. Use BORDER_CONSTANT for default.
borderValue (Optional)
Type: Emgu.CV.StructureMCvScalar
The value of the border.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also