CharacterResult
Interface CharacterResult represents the result of a character recognition process. It contains the characters recognized (high, medium, and low confidence), their respective confidences, and the location of the character in a quadrilateral shape.
Definition
Assembly: dynamsoft-capture-vision-react-native
interface CharacterResult
Properties
| Property | Types | Description |
|---|---|---|
characterH |
string | The character with the highest confidence. |
characterM |
string | The character with medium confidence. |
characterL |
string | The character with the lowest confidence. |
characterHConfidence |
number | The confidence score for the highest confidence character. |
characterMConfidence |
number | The confidence score for the medium confidence character. |
characterLConfidence |
number | The confidence score for the lowest confidence character. |
CharacterH
The character with the highest confidence.
characterH: string;
CharacterM
The character with medium confidence.
characterM: string;
CharacterL
The character with the lowest confidence.
characterL: string;
CharacterHConfidence
The confidence score for the highest confidence character.
characterHConfidence: number;
CharacterMConfidence
The confidence score for the medium confidence character.
characterMConfidence: number;
CharacterLConfidence
The confidence score for the lowest confidence character.
characterLConfidence: number;