I am using a package flutter of firebase_ml_vision. Is there a way to get fast respond of result from face detection? Here is the part of the code
final faceDetector = FirebaseVision.instance.faceDetector(
FaceDetectorOptions(
mode: FaceDetectorMode.fast,
enableLandmarks: true,
enableClassification: false,
enableContours: false,
enableTracking: false));
List<Face> faces = await faceDetector.processImage(image);
and I have changed FaceDetectorMode from accurate to fast, but I still get a slow response.