public FaceResult(int pos_x = 0, int pos_y = 0, int size = 0, int conf = 0)
     : base(pos_x, pos_y, size, conf)
 {
     this.direction   = null;
     this.age         = null;
     this.gender      = null;
     this.gaze        = null;
     this.blink       = null;
     this.expression  = null;
     this.recognition = null;
 }
Ejemplo n.º 2
0
 public TrackingFaceResult(int pos_x = 0, int pos_y = 0, int size = 0, int conf = 0, int detection_id = 0, int tracking_id = 0)
     : base(pos_x, pos_y, size, conf, detection_id, tracking_id)
 {
     this.trackingresult = new TrackingResult(pos_x, pos_y, size, conf, detection_id, tracking_id);
     this.direction      = null;
     this.age            = null;
     this.gender         = null;
     this.gaze           = null;
     this.blink          = null;
     this.expression     = null;
     this.recognition    = null;
 }