Table of Contents

Struct LineSegment3DF

Namespace
Emgu.CV.Structure
Assembly
Emgu.CV.dll

A 3D line segment

public struct LineSegment3DF
Inherited Members

Constructors

LineSegment3DF(MCvPoint3D32f, MCvPoint3D32f)

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

public LineSegment3DF(MCvPoint3D32f p1, MCvPoint3D32f p2)

Parameters

p1 MCvPoint3D32f

The first point on the line segment

p2 MCvPoint3D32f

The second point on the line segment

Properties

Length

Get the length of the line segment

public double Length { get; }

Property Value

double

P1

A point on the line

public MCvPoint3D32f P1 { get; set; }

Property Value

MCvPoint3D32f

P2

An other point on the line

public MCvPoint3D32f P2 { get; set; }

Property Value

MCvPoint3D32f