←Select platform

IOcrPageCharacters Interface

Summary

Represents the recognized characters collection of a page.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
public interface IOcrPageCharacters : IList<IOcrZoneCharacters>, ICollection<IOcrZoneCharacters>, IEnumerable<IOcrZoneCharacters>, IEnumerable 
Public Interface IOcrPageCharacters  
   Inherits System.Collections.Generic.ICollection(Of IOcrZoneCharacters), System.Collections.Generic.IEnumerable(Of IOcrZoneCharacters), System.Collections.Generic.IList(Of IOcrZoneCharacters), System.Collections.IEnumerable  
public interface IOcrPageCharacters : System.Collections.Generic.ICollection<IOcrZoneCharacters>, Windows.Foundation.Collections.IIterable //In WinRT the IEnumerable interface is replaced by IIterable<IOcrZoneCharacters>, Windows.Foundation.Collections.IVector //In WinRT the IList interface is replaced by IVector<IOcrZoneCharacters>, System.Collections.IEnumerable   
@interface LTOcrPageCharacters : NSObject <NSFastEnumeration> 
public class OcrPageCharacters implements List<OcrZoneCharacters> 
function Leadtools.Forms.Ocr.IOcrPageCharacters() System.Collections.Generic.ICollection, System.Collections.Generic.IEnumerable, System.Collections.Generic.IList, System.Collections.IEnumerable  
public interface class IOcrPageCharacters : public System.Collections.Generic.ICollection<IOcrZoneCharacters>, System.Collections.Generic.IEnumerable<IOcrZoneCharacters>, System.Collections.Generic.IList<IOcrZoneCharacters>, System.Collections.IEnumerable   

Remarks

To get the recognized characters of a page, call IOcrPage.GetRecognizedCharacters after IOcrPage.Recognize.

To update the recognized characters of a page, call IOcrPage.GetRecognizedCharacters before calling IOcrDocument.Save, or IOcrDocument.SaveAsync, IOcrDocument.SaveXml or or IOcrDocument.SaveXmlAsync.

IOcrPageCharacters implements the standard IList<T>, ICollection<T> and IEnumerable<T> interfaces with items of type IOcrZoneCharacters. Thus each item in the IOcrPageCharacters contains a collection of the character collections of the zones.

The IOcrZoneCharacters interface contains a collection of the characters of a particular zones.

IOcrZoneCharacters also implements IList<T>, ICollection<T> and IEnumerable<T> interfaces but with items of type OcrCharacter. Each item in the IOcrZoneCharacters contains a collection of the characters of the zone.

The IOcrPageCharacters interface also contains the IOcrPageCharacters.UpdateWord method that allow to modify the OCR recognition results by updating or deleting the words before optionally saving the results to the final output document.

delete any word from For example, if you are interested in iterating through the characters of the 2nd zone in the page, you can do the following:

C#
// Get the page characters  
IOcrPageCharacters pageCharacters = ocrPage.GetRecognizedCharacters();  
 
// Get the 2nd zone characters. Note, index is zero-based so 2nd zone is index 1  
// You can also iterate through the pageCharacters collection and find the IOcrZoneCharacters item with ZoneIndex = 1  
IOcrZoneCharacters zoneCharacters = pageCharacters.FindZoneCharacters(1);  
 
// Loop through the characters  
foreach(OcrCharacter ocrCharacter in zoneCharacters)  
{  
   // Do something with ocrCharacter 
} 
Example

For an example, refer to IOcrPage.GetRecognizedCharacters.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Forms.Ocr Assembly