Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
BufferedCharacterItem
The DSBufferedCharacterItem
class represents a buffered character.
Definition
Assembly: DynamsoftLabelRecognizer.xcframework
- Objective-C
- Swift
@interface DSBufferedCharacterItem : NSObject
class 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 }