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 As Integer, _
ByVal Candidate As Integer _
) As Single
public float MICRGetSymbolConfidence(
int ,
int Candidate
)
public function MICRGetSymbolConfidence(
: Integer;
Candidate: Integer
): Single;
public function MICRGetSymbolConfidence(
: int,
Candidate : int
) : float;
public: float MICRGetSymbolConfidence(
int ,
int Candidate
)
public:
float MICRGetSymbolConfidence(
int ,
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.
See Also