Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CharacterCluster
The DSCharacterCluster
class represents the character clustering result. Each DSCharacterCluster
object records the character info with its mean value.
Definition
Assembly: DynamsoftLabelRecognizer.xcframework
- Objective-C
- Swift
@interface DSCharacterCluster : NSObject
class 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 }