Search Results for

    Show / Hide Table of Contents

    Class OcrResult.OcrResultTextElement

    An abstract class representing discovered OCR DOM text elements such as OcrResult.Character, OcrResult.Word, OcrResult.Line, OcrResult.Paragraph ...

    Inheritance
    System.Object
    OcrResult.OcrResultElement
    OcrResult.OcrResultTextElement
    OcrResult.Block
    OcrResult.Character
    OcrResult.Line
    OcrResult.Page
    OcrResult.Paragraph
    OcrResult.Table
    OcrResult.Word
    Implements
    IronSoftware.Abstractions.Pdf.IDocumentTextObject
    IronSoftware.Abstractions.Pdf.IBoundedPdfDocumentObject
    IronSoftware.Abstractions.Pdf.IPdfDocumentObject
    IronSoftware.Abstractions.IDocumentObject
    IronSoftware.Abstractions.IBounded
    IronSoftware.ITransformable
    IronSoftware.Abstractions.IColored
    System.ICloneable
    Inherited Members
    OcrResult.OcrResultElement.ToBitmap(OcrInput)
    OcrResult.OcrResultElement.Width
    OcrResult.OcrResultElement.Height
    OcrResult.OcrResultElement.X
    OcrResult.OcrResultElement.Y
    OcrResult.OcrResultElement.Location
    Namespace: IronOcr
    Assembly: IronOcr.dll
    Syntax
    public abstract class OcrResultTextElement : OcrResult.OcrResultElement

    OcrResultTextElement is the shared shape behind every piece of recognized text an OCR read returns. Whenever you walk the words, lines, paragraphs, tables, or pages of an OcrResult, each item is built on this element, so the same handful of properties answer "what does it say, how sure is the engine, and where is it on the page" no matter which level you are inspecting.

    A developer rarely constructs this element directly. It arrives as the base of the concrete result types: OcrResult.Word, OcrResult.Line, OcrResult.Paragraph, OcrResult.Table, and OcrResult.Page all derive from it, and you receive them by reading their arrays off the result. Because the element is abstract, you work with it through those derived types, but you read the same members on each one, which is what makes post-processing an OCR result uniform.

    The members you reach for first are Text, the recognized string for that element (truncated when the product is unlicensed), and Confidence, the averaged per-character accuracy where 1 is 100 percent. BoundingBox gives the position as a RectangleF, Color reports the detected text color, and TextDirection returns an OcrResult.TextFlow so you can tell left-to-right text from right-to-left or vertical scripts. Contents is a synonym of Text, and Clone produces a copy when you need to detach an element from its result. Filter by Confidence to drop low-quality reads, and read BoundingBox to draw highlights or crop regions.

    using IronOcr;
    
    var ocr = new IronTesseract();
    using var input = new OcrInput();
    input.LoadImage("scan.png");
    OcrResult result = ocr.Read(input);
    
    foreach (OcrResult.Word word in result.Pages[0].Words)
        Console.WriteLine($"{word.Text} ({word.Confidence:P0})");

    The OCR results objects example walks the result tree, and the reading results how-to shows how to pull text, confidence, and position from each element.

    Constructors

    OcrResultTextElement()

    Declaration
    protected OcrResultTextElement()

    Properties

    Bottom

    Declaration
    public double Bottom { get; set; }
    Property Value
    Type Description
    System.Double

    BoundingBox

    Declaration
    public RectangleF BoundingBox { get; set; }
    Property Value
    Type Description
    System.Drawing.RectangleF

    Color

    Declaration
    public Color Color { get; set; }
    Property Value
    Type Description
    System.Drawing.Color

    Confidence

    OCR statistical accuracy confidence as an average of every character within this object.

    1 = 100%, 0 = 0%

    Declaration
    public virtual double Confidence { get; }
    Property Value
    Type Description
    System.Double

    Contents

    Declaration
    public string Contents { get; set; }
    Property Value
    Type Description
    System.String

    Left

    Declaration
    public double Left { get; set; }
    Property Value
    Type Description
    System.Double

    Matrix

    Declaration
    public MatrixStruct Matrix { get; }
    Property Value
    Type Description
    IronSoftware.MatrixStruct

    ObjNum

    Declaration
    public uint ObjNum { get; set; }
    Property Value
    Type Description
    System.UInt32

    PageIndex

    Declaration
    public uint PageIndex { get; set; }
    Property Value
    Type Description
    System.UInt32

    PdfDocumentId

    Declaration
    public IDocumentId PdfDocumentId { get; set; }
    Property Value
    Type Description
    IronSoftware.Abstractions.Pdf.IDocumentId

    Right

    Declaration
    public double Right { get; set; }
    Property Value
    Type Description
    System.Double

    Scale

    Declaration
    public PointF Scale { get; set; }
    Property Value
    Type Description
    System.Drawing.PointF

    Text

    The full text of this OcrResultElement as a string. This is truncated when the product is unlicensed.

    Declaration
    public string Text { get; set; }
    Property Value
    Type Description
    System.String

    TextDirection

    The direction text was read in: such as 'Left to Right' or 'Top to Bottom'.

    Declaration
    public OcrResult.TextFlow TextDirection { get; }
    Property Value
    Type Description
    OcrResult.TextFlow

    Top

    Declaration
    public double Top { get; set; }
    Property Value
    Type Description
    System.Double

    Translate

    Declaration
    public PointF Translate { get; set; }
    Property Value
    Type Description
    System.Drawing.PointF

    Methods

    Clone()

    Declaration
    public object Clone()
    Returns
    Type Description
    System.Object

    ToString()

    Full OCR text discovered within this object.

    A synonym of Text

    .

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String

    Implements

    IronSoftware.Abstractions.Pdf.IDocumentTextObject
    IronSoftware.Abstractions.Pdf.IBoundedPdfDocumentObject
    IronSoftware.Abstractions.Pdf.IPdfDocumentObject
    IronSoftware.Abstractions.IDocumentObject
    IronSoftware.Abstractions.IBounded
    IronSoftware.ITransformable
    IronSoftware.Abstractions.IColored
    System.ICloneable

    Inherited members

    ToBitmap(OcrInput)
    Width
    Height
    X
    Y
    Location
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronOCR_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronOCR