C# 클래스 Emgu.CV.Structure.LineSegment2DF

A line segment
파일 보기 프로젝트 열기: fajoy/RTSPExample 1 사용 예제들

공개 메소드들

메소드 설명
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