Documentation
Table of contents

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();

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: