C# Класс Emgu.CV.Structure.LineSegment2DF

A line segment
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetExteriorAngleDegree ( LineSegment2DF otherLine ) : double

Get the exterior angle between this line and otherLine

LineSegment2DF ( PointF p1, PointF p2 ) : System

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

Side ( PointF point ) : int

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

YByX ( float x ) : float

Obtain the Y value from the X value using first degree interpolation

Описание методов

GetExteriorAngleDegree() публичный Метод

Get the exterior angle between this line and otherLine
public GetExteriorAngleDegree ( LineSegment2DF otherLine ) : double
otherLine LineSegment2DF The other line
Результат double

LineSegment2DF() публичный Метод

Create a line segment with the specific start point and end point
public LineSegment2DF ( PointF p1, PointF p2 ) : System
p1 System.Drawing.PointF The first point on the line segment
p2 System.Drawing.PointF The second point on the line segment
Результат System

Side() публичный Метод

Determin which side of the line the 2D point is at
public Side ( PointF point ) : int
point System.Drawing.PointF the point
Результат int

YByX() публичный Метод

Obtain the Y value from the X value using first degree interpolation
public YByX ( float x ) : float
x float The X value
Результат float