Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.18 KB

File metadata and controls

52 lines (34 loc) · 1.18 KB
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

CEdge

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.

Definition

Namespace: dynamsoft::basic_structures

Assembly: DynamsoftCore

class CEdge 

Attributes

Attribute Type
startCorner CCorner
endCorner CCorner

startCorner

The start corner point of the edge.

CCorner startCorner

See Also

[CCorner]({{ site.dcvb_cpp_api }}core/basic-structures/corner.html)

endCorner

The end corner point of the edge.

CCorner endCorner

See Also

[CCorner]({{ site.dcvb_cpp_api }}core/basic-structures/corner.html)