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
Module: dynamsoft_label_recognizer
class CharacterResult(object)
Properties
Property | Type |
---|---|
character_h |
str |
character_m |
str |
character_l |
str |
location |
Quadrilateral |
character_h_confidence |
int |
character_m_confidence |
int |
character_l_confidence |
int |
character_h
The character with high confidence.
character_m
The character with medium confidence.
character_l
The character with low confidence.
location
The location of the character in a quadrilateral shape.
See Also
character_h_confidence
The confidence of the character with high confidence.
character_m_confidence
The confidence of the character with medium confidence.
character_l_confidence
The confidence of the character with low confidence.