public int Confidence { get; set; }
The confidence number expresses the certainty of the recognition process.
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 multipage forms.
This example finds the maximum confidence of the comparison with Master Forms.
using Leadtools.Forms.Common;
using Leadtools.Forms.Recognition;
///This method identifies the type of the form based on the comparison results.
public int IdentifyForm(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;
}