Update passed Leadtools.Forms.Processing.FormPages by filling Extra-information after recognition phase but before Processing phase.
Syntax
public void FillFieldsInformation(RasterImage form,FormRecognitionAttributes masterAttributes,FormRecognitionAttributes formAttributes,FormPages pages,List<PageAlignment> alignments)
Public Sub FillFieldsInformation( _ByVal form As RasterImage, _ByVal masterAttributes As FormRecognitionAttributes, _ByVal formAttributes As FormRecognitionAttributes, _ByVal pages As FormPages, _ByVal alignments As List(Of PageAlignment) _)
public void fillFieldsInformation(RasterImage form,FormRecognitionAttributes masterAttributes,FormRecognitionAttributes formAttributes,FormPages pages,java.util.List<PageAlignment> alignments);
public:void FillFieldsInformation(RasterImage^ form,FormRecognitionAttributes^ masterAttributes,FormRecognitionAttributes^ formAttributes,FormPages^ pages,List<PageAlignment^>^ alignments)
form
Form image.
masterAttributes
The Master Form attribute object.
formAttributes
The Form attribute object.
pages
The Leadtools.Forms.Processing.FormPages that needs to by updated with Recognition Information.
alignments
List of Alignments for Each page in Leadtools.Forms.Processing.FormPages.
User should call this function to update Leadtools.Forms.Processing.FormPages to get better results and fix a lot of recognition problems that may occur.
using Leadtools;using Leadtools.Barcode;using Leadtools.Codecs;using Leadtools.Forms.Common;using Leadtools.Ocr;using Leadtools.Forms.Processing;using Leadtools.Forms.Recognition;using Leadtools.Forms.Recognition.Barcode;using Leadtools.Forms.Recognition.Ocr;///This method will compare form Master Form and if they matched then update Form FormPages.public void FillFieldsInformation(RasterImage form, FormPages pages, FormRecognitionAttributes formAttributes, FormRecognitionAttributes masterAttributes, FormRecognitionEngine engine){FormRecognitionResult result = engine.CompareForm(masterAttributes, formAttributes, null);//check if we have good results then update pages to used in Process stageif (result != null && result.Reason == FormRecognitionReason.Success && result.Confidence > 50){//save all pages alignment in List and pass them to FillFieldsInformationList<PageAlignment> alignments = new List<PageAlignment>();for (int i = 0; i < result.PageResults.Count; i++)alignments.Add(result.PageResults[i].Alignment);//the pages will be updatedengine.FillFieldsInformation(form, masterAttributes, formAttributes, pages, alignments);}}
Imports LeadtoolsImports Leadtools.BarcodeImports Leadtools.CodecsImports Leadtools.Forms.CommonImports Leadtools.OcrImports Leadtools.Forms.ProcessingImports Leadtools.Forms.RecognitionImports Leadtools.Forms.Recognition.BarcodeImports Leadtools.Forms.Recognition.Ocr'''This method will compare form Master Form and if they matched then update Form FormPages.Public Sub FillFieldsInformation(form As RasterImage, pages As FormPages, formAttributes As FormRecognitionAttributes, masterAttributes As FormRecognitionAttributes, engine As FormRecognitionEngine)Dim result As FormRecognitionResult = engine.CompareForm(masterAttributes, formAttributes, Nothing)'check if we have good results then update pages to used in Process stageIf result IsNot Nothing AndAlso result.Reason = FormRecognitionReason.Success AndAlso result.Confidence > 50 Then'save all pages alignment in List and pass them to FillFieldsInformationDim alignments As New List(Of PageAlignment)()For i As Integer = 0 To result.PageResults.Count - 1alignments.Add(result.PageResults(i).Alignment)Next'the pages will be updatedengine.FillFieldsInformation(form, masterAttributes, formAttributes, pages, alignments)End IfEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
