The symbol index between 1 and the number of recognized symbols returned by the MICRGetSymbolsCount() method.
The recognized candidate (1 or 2). 1 for the symbol with the best accuracy or 2 for the one with the next-lower level.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / MICRGetSymbolConfidence Method

MICRGetSymbolConfidence Method (GdPictureImaging)

In This Topic
Returns the detection confidence, in percentage, of one of the symbols recognized during the last MICR process done by the MICRDoMICR() method.
Syntax
'Declaration
 
Public Function MICRGetSymbolConfidence( _
   ByVal SymbolNo As Integer, _
   ByVal Candidate As Integer _
) As Single
public float MICRGetSymbolConfidence( 
   int SymbolNo,
   int Candidate
)
public function MICRGetSymbolConfidence( 
    SymbolNo: Integer;
    Candidate: Integer
): Single; 
public function MICRGetSymbolConfidence( 
   SymbolNo : int,
   Candidate : int
) : float;
public: float MICRGetSymbolConfidence( 
   int SymbolNo,
   int Candidate
) 
public:
float MICRGetSymbolConfidence( 
   int SymbolNo,
   int Candidate
) 

Parameters

SymbolNo
The symbol index between 1 and the number of recognized symbols returned by the MICRGetSymbolsCount() method.
Candidate
The recognized candidate (1 or 2). 1 for the symbol with the best accuracy or 2 for the one with the next-lower level.

Return Value

The confidence, in the range 0-100.
Remarks

This method is used in the "MICR" Demo.

Use the GetStat() method to determine if this method succeeded.

See Also