Leadtools.Forms.Recognition Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CompareForm(FormRecognitionAttributes,FormRecognitionAttributes,FormProgressCallback,PageProgressCallback) Method
See Also  Example
Leadtools.Forms.Recognition Namespace > FormRecognitionEngine Class > CompareForm Method : CompareForm(FormRecognitionAttributes,FormRecognitionAttributes,FormProgressCallback,PageProgressCallback) Method



masterAttributes
The Master Form attributes object.
formAttributes
The Form attributes object.
formCallback
Provides status on the progress of the comparison on the form level (i.e. page by page). Set it to null to ignore the progress.
pageCallback
Provides status on the progress of the comparison on th epage level. Set it to null to ignore the progress.
masterAttributes
The Master Form attributes object.
formAttributes
The Form attributes object.
formCallback
Provides status on the progress of the comparison on the form level (i.e. page by page). Set it to null to ignore the progress.
pageCallback
Provides status on the progress of the comparison on th epage level. Set it to null to ignore the progress.
Returns a FormRecognitionResult object determines how close is the specified Form to the specified Master Form.

Syntax

Visual Basic (Declaration) 
Overloads Public Function CompareForm( _
   ByVal masterAttributes As FormRecognitionAttributes, _
   ByVal formAttributes As FormRecognitionAttributes, _
   ByVal formCallback As FormProgressCallback, _
   ByVal pageCallback As PageProgressCallback _
) As FormRecognitionResult
Visual Basic (Usage)Copy Code
Dim instance As FormRecognitionEngine
Dim masterAttributes As FormRecognitionAttributes
Dim formAttributes As FormRecognitionAttributes
Dim formCallback As FormProgressCallback
Dim pageCallback As PageProgressCallback
Dim value As FormRecognitionResult
 
value = instance.CompareForm(masterAttributes, formAttributes, formCallback, pageCallback)

Parameters

masterAttributes
The Master Form attributes object.
formAttributes
The Form attributes object.
formCallback
Provides status on the progress of the comparison on the form level (i.e. page by page). Set it to null to ignore the progress.
pageCallback
Provides status on the progress of the comparison on th epage level. Set it to null to ignore the progress.

Example

For a complete example on using the forms recognition and processing, refer to the FormRecognitionEngine example.

This example compares a Master Form with a Form.

Visual BasicCopy Code
'''This method compares a Form to a Master Form using all pages.
Private Function CompareForm(ByVal recognitionEngine As FormRecognitionEngine, ByVal master As FormRecognitionAttributes, ByVal form As FormRecognitionAttributes) As FormRecognitionResult
   Return recognitionEngine.CompareForm(master, form, Nothing)
End Function
C#Copy Code
///This method compares a Form to a Master Form using all pages. 
FormRecognitionResult CompareForm(FormRecognitionEngine recognitionEngine, FormRecognitionAttributes master, FormRecognitionAttributes form) 

   return recognitionEngine.CompareForm(master, form, null); 
}

Remarks

The Master Form and the Form must have the same number of pages to compare. If they do not, the result will be zero and the reason will be .InvalidNumberOfPages.

In a case that the number of pages in unKnown of the Form, such as scanner loaded with different forms, it is preferable to use FormRecognitionEngine.ComparePage(FormRecognitionAttributes,Int32,FormRecognitionAttributes,Int32) to compare it with the first page of each Master Form then use FormRecognitionEngine.GetFormProperties to get the number of pages of the Master Form then update your Form attributes with the requiered pages if needed for processing.

Comparison should be done between two attributes that has been generated using the same Default Manager Objects, for example if the Master Form attributes has been generated using the BarcodeManager and the Form attributes has been generated using the OcrManager then the Form will not be recognized since the Master Form attributes do not have the text features of the Form.

In order to recognize a Form, the Form attributes must be comapred with all Master Forms attributes that represent the different types of form templates. The Form type is the type of the Master Form attributes that has generated the highest confidence value. If the highest confidence value is very low taht means the Form is not one the types of the Master Forms (i.e. the type of this Form is not defined in the Master Forms set)

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

Leadtools.Forms requires a Forms Module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features