Table of Contents

Class OCRResult<T>

Namespace
AiDotNet.ComputerVision.OCR
Assembly
AiDotNet.dll

Result of OCR processing.

public class OCRResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
OCRResult<T>
Inherited Members

Properties

FullText

Full text concatenated from all regions.

public string FullText { get; set; }

Property Value

string

ImageHeight

Height of the input image.

public int ImageHeight { get; set; }

Property Value

int

ImageWidth

Width of the input image.

public int ImageWidth { get; set; }

Property Value

int

InferenceTime

Time taken for inference.

public TimeSpan InferenceTime { get; set; }

Property Value

TimeSpan

TextRegions

List of recognized text regions.

public List<RecognizedText<T>> TextRegions { get; set; }

Property Value

List<RecognizedText<T>>