CharacterResult
The CharacterResult class 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_flutter
class CharacterResult
Methods
| Method | Description |
|---|---|
CharacterH |
Returns the highest confidence character recognized. |
CharacterM |
Returns the medium confidence character recognized. |
CharacterL |
Returns the lowest confidence character recognized. |
Location |
Returns the location of the recognized character within the image. |
CharacterHConfidence |
Returns the confidence score for the highest confidence character. |
CharacterMConfidence |
Returns the confidence score for the medium confidence character. |
CharacterLConfidence |
Returns the confidence score for the lowest confidence character. |
CharacterH
Returns the highest confidence character recognized.
String characterH;
CharacterM
Returns the medium confidence character recognized.
String characterM;
CharacterL
Returns the lowest confidence character recognized.
String characterL;
Location
Returns the location of the recognized character within the image.
Quadrilateral? location;
CharacterHConfidence
Returns the confidence score for the highest confidence character.
int characterHConfidence;
CharacterMConfidence
Returns the confidence score for the medium confidence character.
int characterMConfidence;
CharacterLConfidence
Returns the confidence score for the lowest confidence character.
int characterLConfidence;