| layout | default-layout |
|---|---|
| title | class CCorner - Dynamsoft Core Module C++ Edition API Reference |
| description | API reference for the CCorner class in Dynamsoft Core C++ Edition, representing a corner point with its type and the two intersecting edges. |
| keywords | corner, c++ |
| needAutoGenerateSidebar | true |
CCorner 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.
Namespace: dynamsoft::basic_structures
Assembly: DynamsoftCore
class CCorner | Attribute | Type |
|---|---|
type |
CornerType |
intersection |
CPoint |
line1 |
CLineSegment |
line2 |
CLineSegment |
The type of the corner.
CornerType typeSee Also
[CornerType]({{ site.dcvb_cpp_api }}core/enum-corner-type.html?src=cpp&&lang=cpp)
The intersection point of the corner.
CPoint intersectionSee Also
[CPoint]({{ site.dcvb_cpp_api }}core/basic-structures/point.html)
One of the line connected to the corner.
CLineSegment line1See Also
[CLineSegment]({{ site.dcvb_cpp_api }}core/basic-structures/line-segment.html)
One of the line connected to the corner.
CLineSegment line2See Also
[CLineSegment]({{ site.dcvb_cpp_api }}core/basic-structures/line-segment.html)