face_contour_detector 0.0.1 copy "face_contour_detector: ^0.0.1" to clipboard
face_contour_detector: ^0.0.1 copied to clipboard

A Flutter plugin for detecting face contours in rgb image.

face_contour_detector #

A Flutter plugin for detecting face contours in rgb image.

  • Currently support only android and in future I'll add feature for support iOS.
  • This plugin take time 20ms -> 80ms for detect face contour from image base on image size.

Getting Started #

Add this plugin to your pubspec.yaml:

dependencies:
  face_contour_detector: ^0.0.1

Initialization #

Need initialize the detector before using it:


bool status = await FaceContourDetectorPlatform.instance.initialize();

Detect Faces from Image #

List<FaceBox> faces = await FaceContourDetectorPlatform.instance.detectFromImage(imageBytes);

Cleanup #

Destroy the detector when it’s no longer needed:


FaceContourDetectorPlatform.instance.destroy();

1
likes
150
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for detecting face contours in rgb image.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on face_contour_detector

Packages that implement face_contour_detector