Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.25 KB

File metadata and controls

53 lines (43 loc) · 1.25 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
DSCornersUnit - Dynamsoft Document Normalizer module iOS Edition API Reference
The class DSCornersUnit of Dynamsoft Document Normalizer module represents an intermediate result unit whose type is corners.
corners unit, objective-c, swift
true
true
true

DSCornersUnit

The DSCornersUnit class represents an intermediate result unit whose type is corners.

Definition

Assembly: DynamsoftDocumentNormalizer.xcframework

>- Objective-C >- Swift > >1. ```objc @interface DSCornersUnit : DSIntermediateResultUnit ``` 2. ```swift class CornersUnit : IntermediateResultUnit ```

Attributes

Attributes Type Description
corners NSArray<DSCorner> ** An array of corners. It includes all corners that participate quadrilaterals assembling.

corners

An array of corners. It includes all corners that participate quadrilaterals assembling.

>- Objective-C >- Swift > >1. ```objc @property(nonatomic, copy, nullable) NSArray *corners ``` 2. ```swift var corners: [Corner]? { get set } ```