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
Namespace: com.dynamsoft.dlr
Assembly: DynamsoftCaptureVisionBundle.aar
class CharacterResult
Methods
| Method | Description |
|---|---|
CharacterResult |
The constructor. |
getCharacterH |
Returns the highest confidence character recognized. |
setCharacterH |
Sets the highest confidence character recognized. |
getCharacterM |
Returns the medium confidence character recognized. |
setCharacterM |
Sets the medium confidence character recognized. |
getCharacterL |
Returns the lowest confidence character recognized. |
setCharacterL |
Sets the lowest confidence character recognized. |
getLocation |
Returns the location of the recognized character within the image. |
setLocation |
Sets the location of the recognized character within the image. |
getCharacterHConfidence |
Returns the confidence score for the highest confidence character. |
setCharacterHConfidence |
Sets the confidence score for the highest confidence character. |
getCharacterMConfidence |
Returns the confidence score for the medium confidence character. |
setCharacterMConfidence |
Sets the confidence score for the medium confidence character. |
getCharacterLConfidence |
Returns the confidence score for the lowest confidence character. |
setCharacterLConfidence |
Sets the confidence score for the lowest confidence character. |
CharacterResult
The constructor.
CharacterResult(char characterH, char characterM, char characterL, int characterHConfidence, int characterMConfidence, int characterLConfidence, Quadrilateral location);
getCharacterH
Returns the highest confidence character recognized.
char getCharacterH();
setCharacterH
Sets the highest confidence character recognized.
setCharacterH(char characterH);
getCharacterM
Returns the medium confidence character recognized.
char getCharacterM();
setCharacterM
Sets the medium confidence character recognized.
setCharacterM(char characterM);
getCharacterL
Returns the lowest confidence character recognized.
char getCharacterL();
setCharacterL
Sets the lowest confidence character recognized.
setCharacterL(char characterL);
getLocation
Returns the location of the recognized character within the image.
Quadrilateral getLocation();
setLocation
Sets the location of the recognized character within the image.
setLocation(Quadrilateral location);
getCharacterHConfidence
Returns the confidence score for the highest confidence character.
int getCharacterHConfidence();
setCharacterHConfidence
Sets the confidence score for the highest confidence character.
setCharacterHConfidence(int characterHConfidence);
getCharacterMConfidence
Returns the confidence score for the medium confidence character.
int characterMConfidence();
setCharacterMConfidence
Sets the confidence score for the medium confidence character.
setCharacterMConfidence(int characterMConfidence);
getCharacterLConfidence
Returns the confidence score for the lowest confidence character.
int characterLConfidence();
setCharacterLConfidence
Sets the confidence score for the lowest confidence character.
setCharacterLConfidence(int characterLConfidence);