Class OCRResult<T>
- Namespace
- AiDotNet.ComputerVision.OCR
- Assembly
- AiDotNet.dll
Result of OCR processing.
public class OCRResult<T>
Type Parameters
TThe 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
ImageHeight
Height of the input image.
public int ImageHeight { get; set; }
Property Value
ImageWidth
Width of the input image.
public int ImageWidth { get; set; }
Property Value
InferenceTime
Time taken for inference.
public TimeSpan InferenceTime { get; set; }
Property Value
TextRegions
List of recognized text regions.
public List<RecognizedText<T>> TextRegions { get; set; }
Property Value
- List<RecognizedText<T>>