Locates input point within subdivision

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Subdiv2DPointLocationType cvSubdiv2DLocate(
	IntPtr subdiv,
	PointF pt,
	out IntPtr edge,
	ref IntPtr vertex
)
Public Shared Function cvSubdiv2DLocate ( _
	subdiv As IntPtr, _
	pt As PointF, _
	<OutAttribute> ByRef edge As IntPtr, _
	ByRef vertex As IntPtr _
) As Subdiv2DPointLocationType
public:
static Subdiv2DPointLocationType cvSubdiv2DLocate(
	IntPtr subdiv, 
	PointF pt, 
	[OutAttribute] IntPtr% edge, 
	IntPtr% vertex
)

Parameters

subdiv
IntPtr
Plannar subdivision
pt
PointF
The point to locate
edge
IntPtr%
The output edge the point falls onto or right to
vertex
IntPtr%
Optional output vertex double pointer the input point coincides with

Return Value

The type of location for the point

See Also