face_auth_flutter icon indicating copy to clipboard operation
face_auth_flutter copied to clipboard

A face recognition/ authentication app in flutter using TensorflowLite & Google ML KIT

Results 2 face_auth_flutter issues
Sort by recently updated
recently updated
newest added

While tryin this Future detectFacesFromImage(CameraImage image) async { InputImageData _firebaseImageMetadata = InputImageData( imageRotation: rotationIntToImageRotation( _cameraController.description.sensorOrientation), inputImageFormat: InputImageFormat.BGRA8888, size: Size(image.width.toDouble(), image.height.toDouble()), planeData: image.planes.map( (Plane plane) { return InputImagePlaneMetadata( bytesPerRow: plane.bytesPerRow, height:...