Click or drag to resize

Subdiv2DGetEdge Method

Returns one of the edges related to the given edge.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public int GetEdge(
	int edge,
	NextEdgeType nextEdgeType
)

Parameters

edge
Type: SystemInt32
Subdivision edge ID.
nextEdgeType
Type: OpenCvSharpNextEdgeType
Parameter specifying which of the related edges to return. The following values are possible: - NEXT_AROUND_ORG next around the edge origin ( eOnext on the picture below if e is the input edge) - NEXT_AROUND_DST next around the edge vertex ( eDnext ) - PREV_AROUND_ORG previous around the edge origin (reversed eRnext ) - PREV_AROUND_DST previous around the edge destination (reversed eLnext ) - NEXT_AROUND_LEFT next around the left facet ( eLnext ) - NEXT_AROUND_RIGHT next around the right facet ( eRnext ) - PREV_AROUND_LEFT previous around the left facet (reversed eOnext ) - PREV_AROUND_RIGHT previous around the right facet (reversed eDnext )

Return Value

Type: Int32

[Missing <returns> documentation for "M:OpenCvSharp.Subdiv2D.GetEdge(System.Int32,OpenCvSharp.NextEdgeType)"]

See Also