Corner
The Corner
class represents a corner, typically where two line segments meet
Definition
Namespace: com.dynamsoft.core.basic_structures
Assembly: DynamsoftCore.aar
class Corner
Attributes
Attributes | Type | Description |
---|---|---|
type |
EnumCornerType | The type of the corner. The types are availabled as normal-intersected, T-intersected, cross-intersected, not-intersected. |
intersection |
android.graphics.Point | The coordinate of the intersection point of the corner. |
line1 |
LineSegment | One of the lines of the corner. Defined in LineSegment. |
line2 |
LineSegment | One of the lines of the corner. Defined in LineSegment. |
type
The type of the corner. The types are availabled as normal-intersected, T-intersected, cross-intersected, not-intersected.
EnumCornerType type;
intersection
The coordinate of the intersection point of the corner.
Point intersection;
line1
One of the lines of the corner. Defined in LineSegment
.
LineSegment line1;
line2
One of the lines of the corner. Defined in LineSegment
.
LineSegment line2;