AlignedFace constructor

AlignedFace({
  1. required double cx,
  2. required double cy,
  3. required double size,
  4. required double theta,
  5. required Mat faceCrop,
})

Creates an aligned face crop with a cv.Mat face crop image.

Implementation

AlignedFace({
  required this.cx,
  required this.cy,
  required this.size,
  required this.theta,
  required this.faceCrop,
});