FacialRecognitionConfiguration constructor

FacialRecognitionConfiguration(
  1. dynamic enrollFace,
  2. dynamic scanMinimumMatchLevel,
  3. dynamic readMinimumMatchLevel,
  4. dynamic lookupMinimumMatchLevel,
  5. dynamic maxAttempts,
  6. dynamic allowClosedEyes,
  7. dynamic obfuscationType,
  8. dynamic isOneToNVerificationEnabled,
  9. dynamic enableActiveLiveness,
  10. dynamic disableLivenessGesture,
)

Implementation

FacialRecognitionConfiguration(
    enrollFace,
    scanMinimumMatchLevel,
    readMinimumMatchLevel,
    lookupMinimumMatchLevel,
    maxAttempts,
    allowClosedEyes,
    obfuscationType,
    isOneToNVerificationEnabled,
    enableActiveLiveness,
    disableLivenessGesture) {
  this.enrollFace = enrollFace;
  this.scanMinimumMatchLevel = scanMinimumMatchLevel;
  this.readMinimumMatchLevel = readMinimumMatchLevel;
  this.lookupMinimumMatchLevel = lookupMinimumMatchLevel;
  this.maxAttempts = maxAttempts;
  this.allowClosedEyes = allowClosedEyes;
  this.obfuscationType = obfuscationType;
  this.isOneToNVerificationEnabled = isOneToNVerificationEnabled;
  this.enableActiveLiveness = enableActiveLiveness;
  this.disableLivenessGesture = disableLivenessGesture;
}