Documentation
Table of contents

CharacterCluster

The DSCharacterCluster class represents the character clustering result. Each DSCharacterCluster object records the character info with its mean value.

Definition

Assembly: DynamsoftLabelRecognizer.xcframework

  • Objective-C
  • Swift
  1. @interface DSCharacterCluster : NSObject
    
  2. class CharacterCluster: NSObject
    

Properties

Property Type Description
character NSString * The string that represents the character.
mean DSBufferedCharacterItem * The mean value of the character cluster, of type BufferedCharacterItem.

character

The string that represents the character.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) NSString * character;
    
  2. var character: String { get }
    

mean

The mean value of the character cluster, of type BufferedCharacterItem.

  • Objective-C
  • Swift
  1. @property (nonatomic, readonly) DSBufferedCharacterItem * mean;
    
  2. var mean: BufferedCharacterItem { get }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: