CharacterCluster
The DSCharacterCluster class represents the character clustering result. Each DSCharacterCluster object records the character info with its mean value.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSCharacterCluster : NSObjectclass CharacterCluster: NSObject
Properties
| Property | Type | Description |
|---|---|---|
character |
NSString * | The string that represents the character. |
mean |
DSBufferedCharacterItem * | The mean value of the character cluster, of type BufferedCharacterItem. |
character
The string that represents the character.
- Objective-C
- Swift
@property (nonatomic, readonly) NSString * character;var character: String { get }
mean
The mean value of the character cluster, of type BufferedCharacterItem.
- Objective-C
- Swift
@property (nonatomic, readonly) DSBufferedCharacterItem * mean;var mean: BufferedCharacterItem { get }