Table of Contents

Class DocumentOCRResult<T>

Namespace
AiDotNet.ComputerVision.OCR.EndToEnd
Assembly
AiDotNet.dll

Result of document OCR.

public class DocumentOCRResult<T>

Type Parameters

T
Inheritance
DocumentOCRResult<T>
Inherited Members

Properties

Blocks

Document blocks (paragraphs, headers, etc.).

public List<DocumentBlock<T>> Blocks { get; set; }

Property Value

List<DocumentBlock<T>>

FullText

Full text of the document.

public string FullText { get; set; }

Property Value

string

ImageHeight

Image height.

public int ImageHeight { get; set; }

Property Value

int

ImageWidth

Image width.

public int ImageWidth { get; set; }

Property Value

int

InferenceTime

Inference time.

public TimeSpan InferenceTime { get; set; }

Property Value

TimeSpan

PageCount

Number of pages (for multi-page documents).

public int PageCount { get; set; }

Property Value

int