Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.32 KB

normalized-image-unit-v2.0.20.md

File metadata and controls

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

DSNormalizedImagesUnit

The DSNormalizedImagesUnit class represents an intermediate result unit whose type is normalized images.

Definition

Assembly: DynamsoftDocumentNormalizer.xcframework

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

Attributes

Attributes Type Description
normalizedImages NSArray<DSNormalizedImageElement>* * An array of DSNormalizedImageElements.

normalizedImages

An array of DSNormalizedImageElements.

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