FaceConfig constructor

FaceConfig({
  1. List<DetectionType> listDetectorType = const [DetectionType.SMILE, DetectionType.LOOK_LEFT, DetectionType.LOOK_RIGHT, DetectionType.EYES_BLINK, DetectionType.LOOK_STRAIGHT],
  2. int doingStep = 3,
  3. DetectionDisplay detectionDisplay = DetectionDisplay.RANDOM,
  4. DetectionLastStep detectionLastStep = DetectionLastStep.TAKE_PORTRAITS,
})

Implementation

FaceConfig({
  this.listDetectorType = const [
    DetectionType.SMILE,
    DetectionType.LOOK_LEFT,
    DetectionType.LOOK_RIGHT,
    DetectionType.EYES_BLINK,
    DetectionType.LOOK_STRAIGHT,
  ],
  this.doingStep = 3,
  this.detectionDisplay = DetectionDisplay.RANDOM,
  this.detectionLastStep = DetectionLastStep.TAKE_PORTRAITS,
});