| Leadtools.Forms.Recognition Namespace > FormRecognitionResult Class : Confidence Property |
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
Copy Code
Imports Leadtools.Forms Imports Leadtools.Forms.Recognition '''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
using Leadtools.Forms; using Leadtools.Forms.Recognition; ///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; }