Documentation
Table of contents

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
  1. @interface DSBufferedCharacterItemSet : NSObject
    
  2. 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
  1. @property (nonatomic, readonly) NSArray<DSBufferedCharacterItem *> * items;
    
  2. var items: [BufferedCharacterItem] { get }
    

characterClusters

An array of CharacterCluster objects that represents the clustered characters.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) NSArray<DSCharacterCluster *> * characterClusters;
    
  2. var characterClusters: [CharacterCluster] { get }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: