FacialRecognitionConfiguration constructor

FacialRecognitionConfiguration(
  1. dynamic enrollFace,
  2. dynamic scanMinimumMatchLevel,
  3. dynamic readMinimumMatchLevel,
  4. dynamic lookupMinimumMatchLevel,
  5. dynamic maxAttempts,
  6. dynamic allowClosedEyes,
)

Implementation

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