Locates input point within subdivision

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

Syntax

C#
public Subdiv2DPointLocationType Locate(
	ref PointF pt,
	out Nullable<MCvSubdiv2DEdge> subdiv2DEdge,
	out Nullable<MCvSubdiv2DPoint> subdiv2DPoint
)
Visual Basic (Declaration)
Public Function Locate ( _
	ByRef pt As PointF, _
	<OutAttribute> ByRef subdiv2DEdge As Nullable(Of MCvSubdiv2DEdge), _
	<OutAttribute> ByRef subdiv2DPoint As Nullable(Of MCvSubdiv2DPoint) _
) As Subdiv2DPointLocationType
Visual C++
public:
Subdiv2DPointLocationType Locate(
	PointF% pt, 
	[OutAttribute] Nullable<MCvSubdiv2DEdge>% subdiv2DEdge, 
	[OutAttribute] Nullable<MCvSubdiv2DPoint>% subdiv2DPoint
)

Parameters

pt
Type: System.Drawing..::.PointF %
The point to locate
subdiv2DEdge
Type: System..::.Nullable<(Of <(MCvSubdiv2DEdge>)>) %
The output edge the point falls onto or right to
subdiv2DPoint
Type: System..::.Nullable<(Of <(MCvSubdiv2DPoint>)>) %
Optional output vertex double pointer the input point coincides with

Return Value

The type of location for the point

See Also