ImageGear .NET - Updated
ConfidenceInfo Property




ImageGear24.Recognition Assembly > ImageGear.Recognition Namespace > ImGearRecLetter Class : ConfidenceInfo Property
Gets or sets the confidence number expressing both the certainty of the recognition of the first guess (Code property) and also the certainty of the word.
Syntax
'Declaration
 
Public Property ConfidenceInfo As Byte
'Usage
 
Dim instance As ImGearRecLetter
Dim value As Byte
 
instance.ConfidenceInfo = value
 
value = instance.ConfidenceInfo
public byte ConfidenceInfo {get; set;}
public: __property byte get_ConfidenceInfo();
public: __property void set_ConfidenceInfo( 
   byte value
);
public:
property byte ConfidenceInfo {
   byte get();
   void set (    byte value);
}

Property Value

Byte value.
Remarks

The most significant bit is used to express the certainty/uncertainty of the word (word is uncertain, if this bit set to one (1)). The remaining bits represent the certainty of the character recognition, which ranges between 0 and 100. The smaller this value is, the higher is the confidence of the recognition. See Confidence Reporting section for more details.

The Confidence and WordUncertain properties, provided for the sake of convenience, offer the same information but already separated out into two separate values. Note also that the scale used by the Confidence property is inverted to reflect the intuitive understanding of confidence, rather than error estimation.

See Also

Reference

ImGearRecLetter Class
ImGearRecLetter Members