Skip to content

Instantly share code, notes, and snippets.

@MCarlomagno
Created September 19, 2020 03:47
Show Gist options
  • Save MCarlomagno/ec25ced379729e548fa7103437d7640f to your computer and use it in GitHub Desktop.
Save MCarlomagno/ec25ced379729e548fa7103437d7640f to your computer and use it in GitHub Desktop.
_cameraService.cameraController.startImageStream((image) async {
...
try {
/// returns a list of faces, but for our propose we just need the first one detected
List<Face> faces = await _mlVisionService.getFacesFromImage(image);
...
} catch (e) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment