C# Class Emgu.CV.Structure.LineSegment2D

A line segment
Exibir arquivo Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
GetExteriorAngleDegree ( LineSegment2D otherLine ) : double

Get the exterior angle between this line and otherLine

LineSegment2D ( Point p1, Point p2 ) : System

Create a line segment with the specific starting point and end point

Side ( Point point ) : int

Determine which side of the line the 2D point is at

Method Details

GetExteriorAngleDegree() public method

Get the exterior angle between this line and otherLine
public GetExteriorAngleDegree ( LineSegment2D otherLine ) : double
otherLine LineSegment2D The other line
return double

LineSegment2D() public method

Create a line segment with the specific starting point and end point
public LineSegment2D ( Point p1, Point p2 ) : System
p1 Point The first point on the line segment
p2 Point The second point on the line segment
return System

Side() public method

Determine which side of the line the 2D point is at
public Side ( Point point ) : int
point Point the point
return int