LEADTOOLS Forms (Leadtools.Forms.Recognition assembly)
LEAD Technologies, Inc

Confidence Property (FormRecognitionResult)

Example 





Gets or sets the level of confidence that a recognition engine has when comparing a Form's attributes object with a Master Form's attributes object.
Syntax
public int Confidence {get; set;}
'Declaration
 
Public Property Confidence As Integer
'Usage
 
Dim instance As FormRecognitionResult
Dim value As Integer
 
instance.Confidence = value
 
value = instance.Confidence
public int Confidence {get; set;}
 get_Confidence();
set_Confidence(value);
public:
property int Confidence {
   int get();
   void set (    int value);
}

Property Value

The confidence number expresses the certainty of the recognition process.
Remarks
Confidence values range from 0 to 100. 0 represents no confidence, 100 represents full confidence. The Confidence value is the average confidence of all pages in multi-page forms.
Example
 
'''This method identifies the type of the form based on the comparison results.
Public Function IdentefyForm(ByVal results As FormRecognitionResult()) As Integer
   Dim maxIndex As Integer = 0
   maxIndex = 0
   Dim i As Integer = 1
   Do While i < results.Length
      If results(maxIndex).Confidence < results(i).Confidence Then
         maxIndex = i
      End If
      i += 1
   Loop
   If results(maxIndex).Confidence < 30 Then
      maxIndex = -1 'no match
   End If
   Return maxIndex
End Function
///This method identifies the type of the form based on the comparison results.
public int IdentefyForm(FormRecognitionResult[] results)
{
   int maxIndex = 0;
   maxIndex = 0;
   for(int i = 1; i < results.Length; i++)
   {
      if(results[maxIndex].Confidence < results[i].Confidence)
         maxIndex = i;
   }
   if(results[maxIndex].Confidence < 30)
      maxIndex = -1;//no match
   return maxIndex;
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FormRecognitionResult Class
FormRecognitionResult Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.

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