BcmFingerImageLiveScore
A scan callback object is provided by BcmScanActivity or BcmScanFragment to IBcmFlowDelegate. It captures the live score result during a scan session.
Interface
data class BcmFingerImageLiveScore(
/**
* This data point is not implemented yet and can be ignored.
*/
var distance: Double,
/**
* Contains the score of the captured finger.
* The range is between [0.0 - 1.0]. Good acceptable values are around 0.2.
* 0.5 - 1.0 is hard to reach, but theoretically possible.
*/
var score: Double,
/**
* Info about which Hand - Left, Right
*/
var hand: Hand,
/**
* Info about which Finger - Thumb, Index, Middle, Ring, Pinky
*/
var finger: Finger)
Usage
The IBcmFlowDelegate.fingerImagesCachedLiveScore() is called, when the internal finger cache was
updated, because fingers with a better score was detected. You can define an own termination logic
in the IBcmFlowDelegate.fingerImagesCachedLiveScore()callback method by using
the BcmFingerImageLiveScore data.