BufferedCharacterItem
The DSBufferedCharacterItem class represents a buffered character.
Definition
Assembly: DynamsoftCaptureVisionBundle.xcframework
- Objective-C
- Swift
@interface DSBufferedCharacterItem : NSObjectclass BufferedCharacterItem: NSObject
Properties
| Property | Type | Description |
|---|---|---|
character |
NSString * | The string that represents the character. |
image |
DSImageData * | The image data of the buffered character. |
features |
NSDictionary<NSNumber *, NSNumber *> * | A NSDictionary that represents all buffered character features. The values of the dictionary are float type. |
character
The string that represents the character.
- Objective-C
- Swift
@property (nonatomic, readonly) NSString * character;var character: String { get }
image
The image data of the buffered character.
- Objective-C
- Swift
@property (nonatomic, readonly) DSImageData * image;var image: ImageData { get }
features
A NSDictionary that represents all buffered character features. The values of the dictionary are float type.
- Objective-C
- Swift
@property (nonatomic, readonly) NSDictionary<NSNumber *, NSNumber *> * features;var features: [NSNumber: NSNumber] { get }