Documentation
Table of contents

BufferedCharacterItem

The DSBufferedCharacterItem class represents a buffered character.

Definition

Assembly: DynamsoftLabelRecognizer.xcframework

  • Objective-C
  • Swift
  1. @interface DSBufferedCharacterItem : NSObject
    
  2. 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
  1. @property (nonatomic, readonly) NSString * character;
    
  2. var character: String { get }
    

image

The image data of the buffered character.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) DSImageData * image;
    
  2. var image: ImageData { get }
    

features

A NSDictionary that represents all buffered character features. The values of the dictionary are float type.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) NSDictionary<NSNumber *, NSNumber *> * features;
    
  2. var features: [NSNumber: NSNumber] { get }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: