Similar to cvSubdiv2DRotateEdge

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

Syntax

C#
public MCvSubdiv2DEdge cvSubdiv2DRotateEdge(
	int rotate
)
Visual Basic (Declaration)
Public Function cvSubdiv2DRotateEdge ( _
	rotate As Integer _
) As MCvSubdiv2DEdge
Visual C++
public:
MCvSubdiv2DEdge cvSubdiv2DRotateEdge(
	int rotate
)

Parameters

rotate
Type: System..::.Int32
Specifies, which of edges of the same quad-edge as the input one to return, one of: 0 - the input edge (e if e is the input edge) 1 - the rotated edge (eRot) 2 - the reversed edge (reversed e (in green)) 3 - the reversed rotated edge (reversed eRot (in green))

Return Value

The rotated edge

See Also