Class OcrResultBlock
- Namespace
 - ScanbotSDK.MAUI.Common
 
- Assembly
 - DocumentSDK.MAUI.dll
 
Represents a single OCR block - a word, line or paragraph
public sealed class OcrResultBlock
  - Inheritance
 - 
      
      OcrResultBlock
 
- Inherited Members
 
Properties
BoundingBox
The bounding box of the block in normalized coordinates - (0,0) is the top-left corner, (1,1) is the bottom-right corner.
public RectF BoundingBox { get; set; }
  Property Value
Confidence
The recognition confidence as reported by the OCR engine. Higher is better.
public double Confidence { get; set; }
  Property Value
Text
The text of the block.
public string Text { get; set; }
  Property Value
Type
The type of the block - word, line or paragraph.
public OcrResultBlockType Type { get; set; }