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
ImageHeight
Image height.
public int ImageHeight { get; set; }
Property Value
ImageWidth
Image width.
public int ImageWidth { get; set; }
Property Value
InferenceTime
Inference time.
public TimeSpan InferenceTime { get; set; }
Property Value
PageCount
Number of pages (for multi-page documents).
public int PageCount { get; set; }