| layout | default-layout |
|---|---|
| title | class CEdge - Dynamsoft Core Module C++ Edition API Reference |
| description | API reference for the CEdge class in Dynamsoft Core C++ Edition, representing a line segment edge defined by its start and end points. |
| keywords | edge, c++ |
| needAutoGenerateSidebar | true |
The class CEdge is a structure composed of two Corner points in an image. A Corner represents a point at which the image's brightness or color sharply changes. Therefore, a CEdge is a line segment connecting two such points that have been identified as Corners.
Namespace: dynamsoft::basic_structures
Assembly: DynamsoftCore
class CEdge | Attribute | Type |
|---|---|
startCorner |
CCorner |
endCorner |
CCorner |
The start corner point of the edge.
CCorner startCornerSee Also
[CCorner]({{ site.dcvb_cpp_api }}core/basic-structures/corner.html)
The end corner point of the edge.
CCorner endCornerSee Also
[CCorner]({{ site.dcvb_cpp_api }}core/basic-structures/corner.html)