ImageGear .NET - Updated
Confidence Property (ImGearRecLetter)




ImageGear24.Recognition Assembly > ImageGear.Recognition Namespace > ImGearRecLetter Class : Confidence Property
Gets or sets confidence level of first guess for the character (0 = not confident, 100 = confident).
Syntax
'Declaration
 
Public Property Confidence As Integer
'Usage
 
Dim instance As ImGearRecLetter
Dim value As Integer
 
instance.Confidence = value
 
value = instance.Confidence
public int Confidence {get; set;}
public: __property int get_Confidence();
public: __property void set_Confidence( 
   int value
);
public:
property int Confidence {
   int get();
   void set (    int value);
}

Property Value

Integer value.
Remarks
Confidence number expressing the certainty of the recognition of the first guess character code. The value of this property ranges from 0 (not confident) to 100 (very confident).

This property is tied to the ConfidenceInfo property and provides the same information, but in a different way. The confidence value is inverted (to match the intuitive understanding of a confidence estimation) and only the character confidence is provided, rather than both the character confidence and word confidence.

This property is provided for the sake of convenience and does not result in additional storage overhead for the recognized data.

See Also

Reference

ImGearRecLetter Class
ImGearRecLetter Members