Similar to cvSubdiv2DRotateEdge

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

Syntax

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

Parameters

rotate
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