Configuration

data class Configuration(val validators: List<PalmAutoCaptureDetectionValidator>, val minValidFramesInRowToStartCandidateSelection: Int = DEFAULT_MIN_VALID_FRAMES_IN_ROW_TO_START_CANDIDATE_SELECTION, val candidateSelectionDurationMillis: Int = DEFAULT_CANDIDATE_SELECTION_DURATION_MILLIS, val detectionNormalizedRectangle: RectangleDouble? = null, val sessionToken: String? = null)

Configuration for the Palm Auto Capture Controller component.

Parameters

validators

List of validators. Validations are applied in the same order in which they are stored in the list.

minValidFramesInRowToStartCandidateSelection

Minimum number of valid frames in a row to start candidate selection. Default value is 2.

candidateSelectionDurationMillis

Duration of candidate selection in milliseconds. Default value is 1500.

detectionNormalizedRectangle

Rectangle of a submitted image (via the PalmAutoCaptureController.process method) where a palm should be detected. The rectangle defines an area inside the image. E.g. if you post images of size 1080x1920 and you want to ignore top and bottom areas, you can use the detectionNormalizedRectangle as follows: RectangleDouble(0.0, 0.25, 1.0, 0.75)`. Source image is used if detectionNormalizedRectangle is not defined.

sessionToken

Session token provided by DIS (Digital Identity Service). Set the session token if the result should be posted to DIS for evaluation. Default value is null.

Throws

if any of the validators has a missing dependency.

Constructors

Link copied to clipboard
fun Configuration(validators: List<PalmAutoCaptureDetectionValidator>, minValidFramesInRowToStartCandidateSelection: Int = DEFAULT_MIN_VALID_FRAMES_IN_ROW_TO_START_CANDIDATE_SELECTION, candidateSelectionDurationMillis: Int = DEFAULT_CANDIDATE_SELECTION_DURATION_MILLIS, detectionNormalizedRectangle: RectangleDouble? = null, sessionToken: String? = null)

Types

Link copied to clipboard
object Companion

Properties