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
Visual Basic (Declaration) | |
---|
Public Property Confidence As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As FormRecognitionResult
Dim value As Integer
instance.Confidence = value
value = instance.Confidence
|
C# | |
---|
public int Confidence {get; set;} |
C++/CLI | |
---|
public:
property int Confidence {
int get();
void set (int value);
} |
Return Value
The confidence number expresses the certainty of the recognition process.
Example
For a complete example on using the forms recognition and processing, refer to the FormRecognitionEngine example.
This example finds the maximum confidence of the comparison with Master Forms.
Visual Basic | Copy Code |
---|
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
End If
Return maxIndex
End Function
|
C# | Copy Code |
---|
///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; } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also