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: Dynamsoft.LabelRecognizer.Maui

Assembly: Dynamsoft.LabelRecognizer.Maui

class CharacterResult

Properties

Property Type Description
CharacterH char Returns the highest confidence character recognized.
CharacterM char Returns the medium confidence character recognized.
CharacterL char Returns the lowest confidence character recognized.
Location Quadrilateral Returns the location of the recognized character within the image.
CharacterHConfidence int Returns the confidence score for the highest confidence character.
CharacterMConfidence int Returns the confidence score for the medium confidence character.
CharacterLConfidence int Returns the confidence score for the lowest confidence character.

CharacterH

Returns the highest confidence character recognized.

char CharacterH { get; }

CharacterM

Returns the medium confidence character recognized.

char CharacterM { get; }

CharacterL

Returns the lowest confidence character recognized.

char CharacterL { get; }

Location

Returns the location of the recognized character within the image.

Quadrilateral Location { get; }

CharacterHConfidence

Returns the confidence score for the highest confidence character.

int CharacterHConfidence { get; }

CharacterMConfidence

Returns the confidence score for the medium confidence character.

int CharacterMConfidence { get; }

CharacterLConfidence

Returns the confidence score for the lowest confidence character.

int CharacterLConfidence { get; }