Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.44 KB

File metadata and controls

53 lines (43 loc) · 1.44 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
DSIntermediateResult - Dynamsoft Core Module iOS Edition API Reference
The class DSIntermediateResult of Dynamsoft Core Module represents a container containing a collection of DSIntermediateResultUnit objects.
intermediate result, objective-c, swift
true
true
true

DSIntermediateResult

The IntermediateResult class represents the collection of all intermediate result units produced during image processing.

Definition

Assembly: DynamsoftCore.framework

>- Objective-C >- Swift > >1. ```objc @interface DSIntermediateResult : NSObject ``` 2. ```swift class IntermediateResult : NSObject ```

Attributes

Attributes Type Description
intermediateResultUnits NSArray<DSIntermediateResultUnit>* ** An array of DSIntermediateResultUnit objects, each representing a different type of intermediate result.

intermediateResultUnits

An array of DSIntermediateResultUnit objects, each representing a different type of intermediate result.

>- Objective-C >- Swift > >1. ```objc @property(nonatomic, strong, nonnull, readonly) NSArray * intermediateResultUnits; ``` 2. ```swift var intermediateResultUnits: [IntermediateResultUnit] { get } ```