Corner
Corner is a structure in an image consisting of two line segments and intersection point. A Corner represents a point at which the image’s brightness or color sharply changes.
Definition
Module: dynamsoft_core
class Corner
Properties
Attribute | Type | Description |
---|---|---|
type |
int | The type of the corner. This is one of the values of the EnumCornerType enumeration. |
intersection |
Point | The intersection point of the corner. |
line1 |
LineSegment | One of the line connected to the corner. |
line2 |
LineSegment | One of the line connected to the corner. |
Methods
Method | Description |
---|---|
__init__ |
Initializes a new instance of the Corner class. |
__init__
Initializes a new instance of the Corner
class.
def __init__(self):