Skip to content

Latest commit

 

History

History
93 lines (64 loc) · 2.47 KB

File metadata and controls

93 lines (64 loc) · 2.47 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex breadcrumbText permalink
default-layout
CharacterResult - Dynamsoft Label Recognizer Android Edition
The class CharacterResult of Dynamsoft Label Recognizer Android edition represents the result of a character recognition process.
Character result
true
true
true
CharacterResult
/programming/android/api-reference/character-result.html

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: DynamsoftLabelRecognizer.aar

class CharacterResult

Methods

Method Description
getCharacterH Returns the highest confidence character recognized.
getCharacterM Returns the medium confidence character recognized.
getCharacterL Returns the lowest confidence character recognized.
getLocation Returns the location of the recognized character within the image.
getCharacterHConfidence Returns the confidence score for the highest confidence character.
getCharacterMConfidence Returns the confidence score for the medium confidence character.
getCharacterLConfidence Returns the confidence score for the lowest confidence character.

getCharacterH

Returns the highest confidence character recognized.

char getCharacterH();

getCharacterM

Returns the medium confidence character recognized.

char getCharacterM();

getCharacterL

Returns the lowest confidence character recognized.

char getCharacterL();

getLocation

Returns the location of the recognized character within the image.

Quadrilateral getLocation();

getCharacterHConfidence

Returns the confidence score for the highest confidence character.

int getCharacterHConfidence();

getCharacterMConfidence

Returns the confidence score for the medium confidence character.

int characterMConfidence();

getCharacterLConfidence

Returns the confidence score for the lowest confidence character.

int characterLConfidence();