The function emulates the human "foveal" vision and can be used for fast scale and rotation-invariant template matching, for object tracking etc.

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

Syntax

C#
public static void cvLinearPolar(
	IntPtr src,
	IntPtr dst,
	PointF center,
	double maxRadius,
	int flags
)
Visual Basic (Declaration)
Public Shared Sub cvLinearPolar ( _
	src As IntPtr, _
	dst As IntPtr, _
	center As PointF, _
	maxRadius As Double, _
	flags As Integer _
)
Visual C++
public:
static void cvLinearPolar(
	IntPtr src, 
	IntPtr dst, 
	PointF center, 
	double maxRadius, 
	int flags
)

Parameters

src
Type: System..::.IntPtr
Source image
dst
Type: System..::.IntPtr
Destination image
center
Type: System.Drawing..::.PointF
The transformation center, where the output precision is maximal
maxRadius
Type: System..::.Double
Maximum radius
flags
Type: System..::.Int32
A combination of interpolation method and the optional flag CV_WARP_FILL_OUTLIERS and/or CV_WARP_INVERSE_MAP

See Also