Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
DSBufferedCharacterItemSet
The DSBufferedCharacterItemSet
class represents the buffered characters and the character cluster that generated from the buffered characters.
Definition
Assembly: DynamsoftLabelRecognizer.xcframework
- Objective-C
- Swift
@interface DSBufferedCharacterItemSet : NSObject
class BufferedCharacterItemSet: NSObject
Properties
Property | Type | Description |
---|---|---|
items |
NSArray<DSBufferedCharacterItem *> * | An array of BufferedCharacterItem objects that represents the buffered characters. |
characterClusters |
NSArray<DSCharacterCluster *> * | An array of CharacterCluster objects that represents the clustered characters. |
items
An array of BufferedCharacterItem
objects that represents the buffered characters.
- Objective-C
- Swift
@property (nonatomic, readonly) NSArray<DSBufferedCharacterItem *> * items;
var items: [BufferedCharacterItem] { get }
characterClusters
An array of CharacterCluster
objects that represents the clustered characters.
- Objective-C
- Swift
@property (nonatomic, readonly) NSArray<DSCharacterCluster *> * characterClusters;
var characterClusters: [CharacterCluster] { get }