Skip to content

Latest commit

 

History

History
78 lines (50 loc) · 1.55 KB

File metadata and controls

78 lines (50 loc) · 1.55 KB
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

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.

Definition

Namespace: dynamsoft::basic_structures

Assembly: DynamsoftCore

class CCorner 

Attributes

Attribute Type
type CornerType
intersection CPoint
line1 CLineSegment
line2 CLineSegment

type

The type of the corner.

CornerType type

See Also

[CornerType]({{ site.dcvb_cpp_api }}core/enum-corner-type.html?src=cpp&&lang=cpp)

intersection

The intersection point of the corner.

CPoint intersection

See Also

[CPoint]({{ site.dcvb_cpp_api }}core/basic-structures/point.html)

line1

One of the line connected to the corner.

CLineSegment line1

See Also

[CLineSegment]({{ site.dcvb_cpp_api }}core/basic-structures/line-segment.html)

line2

One of the line connected to the corner.

CLineSegment line2

See Also

[CLineSegment]({{ site.dcvb_cpp_api }}core/basic-structures/line-segment.html)