| NextEdgeType Enumeration |
Parameter for Subdiv2D.GetEdge() specifying which of the related edges to return.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration NextEdgeType
public enum class NextEdgeType
Members
| Member name | Value | Description |
---|
| NEXT_AROUND_ORG | 0 |
next around the edge origin ( eOnext on the picture below if e is the input edge)
|
| NEXT_AROUND_DST | 34 |
next around the edge vertex ( eDnext )
|
| PREV_AROUND_ORG | 17 |
previous around the edge origin (reversed eRnext )
|
| PREV_AROUND_DST | 51 |
previous around the edge destination (reversed eLnext )
|
| NEXT_AROUND_LEFT | 19 |
next around the left facet ( eLnext )
|
| NEXT_AROUND_RIGHT | 49 |
next around the right facet ( eRnext )
|
| PREV_AROUND_LEFT | 32 |
previous around the left facet (reversed eOnext )
|
| PREV_AROUND_RIGHT | 2 |
previous around the right facet (reversed eDnext )
|
See Also