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 Subdiv2DPointLocationType Locate(
	ref PointF pt,
	out Nullable<MCvSubdiv2DEdge> subdiv2DEdge,
	out Nullable<MCvSubdiv2DPoint> subdiv2DPoint
)
Public Function Locate ( _
	ByRef pt As PointF, _
	<OutAttribute> ByRef subdiv2DEdge As Nullable(Of MCvSubdiv2DEdge), _
	<OutAttribute> ByRef subdiv2DPoint As Nullable(Of MCvSubdiv2DPoint) _
) As Subdiv2DPointLocationType

Parameters

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

Return Value

The type of location for the point

See Also