Similar to other geometrical transformations, some interpolation method (specified by user) is used to extract pixels with non-integer coordinates.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvRemap(
	IntPtr src,
	IntPtr dst,
	IntPtr mapx,
	IntPtr mapy,
	int flags,
	MCvScalar fillval
)
Public Shared Sub cvRemap ( _
	src As IntPtr, _
	dst As IntPtr, _
	mapx As IntPtr, _
	mapy As IntPtr, _
	flags As Integer, _
	fillval As MCvScalar _
)
public:
static void cvRemap(
	IntPtr src, 
	IntPtr dst, 
	IntPtr mapx, 
	IntPtr mapy, 
	int flags, 
	MCvScalar fillval
)

Parameters

src
IntPtr
Source image
dst
IntPtr
Destination image
mapx
IntPtr
The map of x-coordinates (32fC1 image)
mapy
IntPtr
The map of y-coordinates (32fC1 image)
flags
Int32
A combination of interpolation method and the optional flag CV_WARP_FILL_OUTLIERS
fillval
MCvScalar
A value used to fill outliers

See Also