Warps the image using perspective transformation

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 gpuMatWarpPerspective(
	IntPtr src,
	IntPtr dst,
	IntPtr M,
	INTER flags
)
Public Shared Sub gpuMatWarpPerspective ( _
	src As IntPtr, _
	dst As IntPtr, _
	M As IntPtr, _
	flags As INTER _
)
public:
static void gpuMatWarpPerspective(
	IntPtr src, 
	IntPtr dst, 
	IntPtr M, 
	INTER flags
)

Parameters

src
IntPtr
The source GpuMat
dst
IntPtr
The destination GpuMat
M
IntPtr
The 2x3 transformation matrix (pointer to CvArr)
flags
INTER
Supports NN, LINEAR, CUBIC

See Also