Search Results for

    Show / Hide Table of Contents

    Class ResultIterator

    Inheritance
    System.Object
    DisposableBase
    PageIterator
    ResultIterator
    Implements
    System.IDisposable
    Inherited Members
    PageIterator.page
    PageIterator.handle
    PageIterator.Finalize()
    PageIterator.Begin()
    PageIterator.Next(PageIteratorLevel)
    PageIterator.Next(PageIteratorLevel, PageIteratorLevel)
    PageIterator.IsAtBeginningOf(PageIteratorLevel)
    PageIterator.IsAtFinalOf(PageIteratorLevel, PageIteratorLevel)
    PageIterator.TryGetBoundingBox(PageIteratorLevel, Rect)
    PageIterator.TryGetBaseline(PageIteratorLevel, Rect)
    PageIterator.GetProperties()
    PageIterator.Dispose(Boolean)
    PageIterator.BlockType
    DisposableBase.Dispose()
    DisposableBase.VerifyNotDisposed()
    DisposableBase.IsDisposed
    Namespace: DynamicTesseract
    Assembly: IronOcr.dll
    Syntax
    public sealed class ResultIterator : PageIterator

    ResultIterator is what code reads from when it needs both the recognized text and where that text came from. It extends the page traversal of PageIterator with the recognition output Tesseract attaches to each element, so a single walk yields the words, their confidence, and their layout together rather than in separate passes.

    A ResultIterator is produced from a recognized page and inherits the cursor mechanics of its base, Begin to reset and Next to advance by a PageIteratorLevel, while adding the result-side reads on top. Because it is sealed and disposable, wrap it in using or dispose it once the walk is done. The geometry methods of the base, such as TryGetBoundingBox, remain available, so position and text are read at the same cursor stop.

    GetText returns the recognized text at a chosen PageIteratorLevel, from a single symbol up to a whole block, and GetConfidence reports how certain the engine is about that element so low-confidence results can be flagged or re-read. The word-level reads describe each word in context: GetWordFontAttributes reports its font, GetWordRecognitionLanguage the language the engine matched, and GetWordIsFromDictionary and GetWordIsNumeric flag dictionary words and numeric tokens, which helps when validating fields such as totals or codes. At the symbol level, GetSymbolIsSuperscript, GetSymbolIsSubscript, and GetSymbolIsDropcap distinguish special characters, while GetChoiceIterator exposes the alternative candidates the engine considered for the current symbol when a result needs review.

    using DynamicTesseract;
    
    void DumpWords(ResultIterator iterator)
    {
        iterator.Begin();
        do
        {
            string word = iterator.GetText(PageIteratorLevel.Word);
            float confidence = iterator.GetConfidence(PageIteratorLevel.Word);
            Console.WriteLine($"{word} ({confidence:F1}%)");
        }
        while (iterator.Next(PageIteratorLevel.Word));
    }

    The OCR results how-to covers reading recognized text, the results objects example shows the result model, and the result confidence how-to explains the confidence scores.

    Methods

    GetChoiceIterator()

    Declaration
    public ChoiceIterator GetChoiceIterator()
    Returns
    Type Description
    ChoiceIterator

    GetConfidence(PageIteratorLevel)

    Declaration
    public float GetConfidence(PageIteratorLevel level)
    Parameters
    Type Name Description
    PageIteratorLevel level
    Returns
    Type Description
    System.Single

    GetSymbolIsDropcap()

    Declaration
    public bool GetSymbolIsDropcap()
    Returns
    Type Description
    System.Boolean

    GetSymbolIsSubscript()

    Declaration
    public bool GetSymbolIsSubscript()
    Returns
    Type Description
    System.Boolean

    GetSymbolIsSuperscript()

    Declaration
    public bool GetSymbolIsSuperscript()
    Returns
    Type Description
    System.Boolean

    GetText(PageIteratorLevel)

    Declaration
    public string GetText(PageIteratorLevel level)
    Parameters
    Type Name Description
    PageIteratorLevel level
    Returns
    Type Description
    System.String

    GetWordFontAttributes()

    Declaration
    public FontAttributes GetWordFontAttributes()
    Returns
    Type Description
    FontAttributes

    GetWordIsFromDictionary()

    Declaration
    public bool GetWordIsFromDictionary()
    Returns
    Type Description
    System.Boolean

    GetWordIsNumeric()

    Declaration
    public bool GetWordIsNumeric()
    Returns
    Type Description
    System.Boolean

    GetWordRecognitionLanguage()

    Declaration
    public string GetWordRecognitionLanguage()
    Returns
    Type Description
    System.String

    Implements

    System.IDisposable

    Inherited members

    page
    handle
    Finalize()
    Begin()
    Next(PageIteratorLevel)
    Next(PageIteratorLevel, PageIteratorLevel)
    IsAtBeginningOf(PageIteratorLevel)
    IsAtFinalOf(PageIteratorLevel, PageIteratorLevel)
    TryGetBoundingBox(PageIteratorLevel, Rect)
    TryGetBaseline(PageIteratorLevel, Rect)
    GetProperties()
    Dispose(Boolean)
    BlockType
    Dispose()
    VerifyNotDisposed()
    IsDisposed
    ☀
    ☾
    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