Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0x48lab/flutter_body_detection
A flutter plugin that uses MLKit on iOS/Android platforms to enable body pose and mask detection using Pose Detection and Selfie Segmentation APIs for both static images and live camera stream.
https://github.com/0x48lab/flutter_body_detection
android flutter ios mlkit pose-detection selfie-segmentation
Last synced: about 1 month ago
JSON representation
A flutter plugin that uses MLKit on iOS/Android platforms to enable body pose and mask detection using Pose Detection and Selfie Segmentation APIs for both static images and live camera stream.
- Host: GitHub
- URL: https://github.com/0x48lab/flutter_body_detection
- Owner: 0x48lab
- License: other
- Created: 2021-11-08T06:54:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T15:32:23.000Z (9 months ago)
- Last Synced: 2024-09-28T12:04:36.619Z (about 2 months ago)
- Topics: android, flutter, ios, mlkit, pose-detection, selfie-segmentation
- Language: Dart
- Homepage:
- Size: 514 KB
- Stars: 31
- Watchers: 1
- Forks: 20
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# body_detection
A flutter plugin that uses MLKit on iOS/Android platforms to enable body pose and mask detection using Pose Detection and Selfie Segmentation APIs for both static images and live camera stream. When using live camera detection it runs both the camera image aquisition and detectors on the native side, which makes it faster than using the flutter camera plugin separately.
## Features
* Body pose detection.
* Body mask detection (selfie segmentation).
* Run on single image or live camera feed.
* Both camera image aquisition and detectors run together on the native side which makes it faster than using separate plugins for both and passing data between them.
* Uses MLKit for detectors so shares its advantages and disadvantages.## Installation
### iOS
Minimum required iOS version is 10.0, so if compiling for a lower target make sure to check programatically the iOS version before calling this library's functions.
To be able to use the camera-based detection you need to add a row to the `ios/Runner/Info.plist` file using Xcode:
* `Privacy - Camera Usage Description` and set a usage description message.
If editing the file in plain-text add the following:
```xml
NSCameraUsageDescription
Can I use the camera please?
```### Android
Set the minimum Android SDK version to 21 (or higher) in your `android/app/build.gradle` file:
```
android {
defaultConfig {
minSdkVersion 21
}
}
```To use the camera you need to add uses-permission declaration to your `android/app/src/main/AndroidManifest.xml` manifest file:
```
...
```## Usage
The plugin has two modes, you can either run a pose or body mask detection on a single image, or start a camera stream and enable or disable either of the detectors while it's running.
### Single Image Detection
The simplest use case is to detect pose or body mask on a single image. The plugin accepts a PNG-encoded image and sends it to the native side, where it uses Google MLKit's Vision APIs to do the hard work. After that, the results are passed back to flutter:
```dart
import 'package:body_detection/body_detection.dart';
import 'package:body_detection/png_image.dart';PngImage pngImage = PngImage.from(bytes, width: width, height: height);
final pose = await BodyDetection.detectPose(image: pngImage);
final bodyMask = await BodyDetection.detectBodyMask(image: pngImage);
```This plugin provides an extension to flutter's Image widget that converts it to the PNG format so you can use any image source that the widget supports as an input: local asset, network, memory, etc.
```dart
import 'package:body_detection/body_detection.dart';
import 'package:body_detection/png_image.dart';
import 'package:flutter/widgets.dart';void detectImagePose(Image source) async {
PngImage? pngImage = await source.toPngImage();
if (pngImage == null) return;
final pose = await BodyDetection.detectPose(image: pngImage);
...
}
```If you need the size of the encoded PNG image for your layout purposes (for example the image aspect ratio), you can get that from the returned PngImage object:
```dart
import 'package:body_detection/png_image.dart';
import 'package:flutter/widgets.dart';Image source;
PngImage? pngImage = await source.toPngImage();
final imageSize = pngImage != null
? Size(pngImage!.width.toDouble(), pngImage!.height.toDouble())
: Size.zero;
```Pose object returned from the BodyDetection.detectPose call holds a list of landmarks returned from the MLKit detector. Each Landmark has a structure that follows that established by MLKit:
```dart
final pose = await BodyDetection.detectPose(image: pngImage);
for (final landmark in pose!.landmarks) {
// The detector estimate of how likely it is that the landmark is within the image's frame.
double inFrameLikelihood = landmark.inFrameLikelihood;// Position of the landmark in image plane coordinates with z value estimated by the detector.
Point3d position = landmark.position;// One of the 33 detectable body landmarks.
PoseLandmarkType type = landmark.type;
}
```You can draw the pose using a custom painter:
```dart
class PosePainter extends CustomPainter {
PosePainter({
required this.pose,
required this.imageSize,
});final Pose pose;
final Size imageSize;
final circlePaint = Paint()..color = const Color.fromRGBO(0, 255, 0, 0.8);
final linePaint = Paint()
..color = const Color.fromRGBO(255, 0, 0, 0.8)
..strokeWidth = 2;@override
void paint(Canvas canvas, Size size) {
final double hRatio =
imageSize.width == 0 ? 1 : size.width / imageSize.width;
final double vRatio =
imageSize.height == 0 ? 1 : size.height / imageSize.height;offsetForPart(PoseLandmark part) =>
Offset(part.position.x * hRatio, part.position.y * vRatio);for (final part in pose.landmarks) {
// Draw a circular indicator for the landmark.
canvas.drawCircle(offsetForPart(part), 5, circlePaint);// Draw text label for the landmark.
TextSpan span = TextSpan(
text: part.type.toString().substring(16),
style: const TextStyle(
color: Color.fromRGBO(0, 128, 255, 1),
fontSize: 10,
),
);
TextPainter tp = TextPainter(text: span, textAlign: TextAlign.left);
tp.textDirection = TextDirection.ltr;
tp.layout();
tp.paint(canvas, offsetForPart(part));
}// Draw connections between the landmarks.
final landmarksByType = {for (final it in pose.landmarks) it.type: it};
for (final connection in connections) {
final point1 = offsetForPart(landmarksByType[connection[0]]!);
final point2 = offsetForPart(landmarksByType[connection[1]]!);
canvas.drawLine(point1, point2, linePaint);
}
}...
}
```And use that in your widget tree:
```dart
@override
Widget build(BuildContext context) {
// Use ClipRect so that custom painter doesn't draw outside of the widget area.
return ClipRect(
child: CustomPaint(
child: _sourceImage,
foregroundPainter: PosePainter(
pose: _detectedPose,
imageSize: _imageSize,
),
),
);
}
```For details see [Google MLKit Pose Detection API documentation](https://developers.google.com/ml-kit/vision/pose-detection).
Detected body mask is returned as a double-valued buffer of length `width * height` indicating the confidence that a particular pixel covers area that is recognized to be a body. Size of the body mask can differ from the size of the input image as this makes calculations faster and makes it possible to run acceptably well in real-time on slower devices as well.
To display the mask you can for example decode the buffer as a dart image using the buffer value as an alpha component:
```dart
final mask = await BodyDetection.detectBodyMask(image: pngImage);
final bytes = mask.buffer
.expand((it) => [0, 0, 0, (it * 255).toInt()])
.toList();
ui.decodeImageFromPixels(Uint8List.fromList(bytes), mask.width, mask.height, ui.PixelFormat.rgba8888, (image) {
// Do something with the image, for example set it as a widget's state field so you can pass it to a custom painter for drawing in the build method.
});
```Then for example to draw transparent blue overlay over the background you could have a custom painter like this:
```dart
class MaskPainter extends CustomPainter {
MaskPainter({
required this.mask,
});final ui.Image mask;
final maskPaint = Paint()
..colorFilter = const ColorFilter.mode(
Color.fromRGBO(0, 0, 255, 0.5), BlendMode.srcOut);@override
void paint(Canvas canvas, Size size) {
canvas.drawImageRect(
mask,
Rect.fromLTWH(0, 0, mask.width.toDouble(), mask.height.toDouble()),
Rect.fromLTWH(0, 0, size.width, size.height),
maskPaint);
}
}
```And use that in your widget tree together with original image:
```dart
@override
Widget build(BuildContext context) {
return CustomPaint(
child: _sourceImage,
foregroundPainter: MaskPainter(mask: _maskImage),
);
```For details see [Google MLKit Selfie Segmentation API documentation](https://developers.google.com/ml-kit/vision/selfie-segmentation).
You can see the complete example in the [plugin's repository](https://github.com/0x48lab/flutter_body_detection).
### Camera Feed Detection
In addition to single image detection, this plugin supports real-time detection of either or both the pose and body mask from camera feed. Both the camera image acquisition and detection run on the native side, so we eliminate the cost of data serialization we would need if we used a separate flutter plugins for each.
To start and stop the camera stream, use the following methods while passing callbacks for when the camera frame or detection results are ready:
```dart
await BodyDetection.startCameraStream(
onFrameAvailable: (ImageResult image) {},
onPoseAvailable: (Pose? pose) {},
onMaskAvailable: (BodyMask? mask) {},
);
await BodyDetection.stopCameraStream();
```Detectors are disabled by default. To enable or disable particular detector use the following methods:
```dart
await BodyDetection.enablePoseDetection();
await BodyDetection.disablePoseDetection();await BodyDetection.enableBodyMaskDetection();
await BodyDetection.disableBodyMaskDetection();
```You can run those both before starting the camera stream as well as while the stream is already running.
To display camera image you can create an Image widget from bytes:
```dart
void _handleCameraImage(ImageResult result) {
// Ignore callback if navigated out of the page.
if (!mounted) return;// To avoid a memory leak issue.
// https://github.com/flutter/flutter/issues/60160
PaintingBinding.instance?.imageCache?.clear();
PaintingBinding.instance?.imageCache?.clearLiveImages();final image = Image.memory(
result.bytes,
gaplessPlayback: true,
fit: BoxFit.contain,
);setState(() {
_cameraImage = image;
_imageSize = result.size;
});
}
```ImageResult's `bytes` field contains a JPEG-encoded frame from the camera which Image.memory() factory constructor accepts as its input.
## Example App
#### Running Pose Detection
![Demo](https://github.com/0x48lab/flutter_body_detection/raw/main/example/screenshots/body_pose.png)#### Running Body Mask Detection
![Demo](https://github.com/0x48lab/flutter_body_detection/raw/main/example/screenshots/body_mask.png)## Future Developments
This library encodes images from the camera and serializes them when passing them over to flutter. This enables easy access to the image data so one can do additional processing, save frames to storage or send them for over the network, but also adds an overhead which could be avoided if it only passed a texture id which could then be displayed using the Texture widget in the same vein as what camera plugin does.
It does not yet provide any configuration options and rely on defaults ("accurate" pose detection model, raw size mask for selfie segmentation, using first available front camera, default camera image size, JPEG encoding quality set to 60). It would be good to let users choose those settings to match their use case.
Exception handling is not unified and could use some more work.
## Notice
This library is not yet battle-tested. As it's an early release it might have its features and API changed. If you encounter a problem or would like to request a feature, feel free to [open an issue](https://github.com/0x48lab/flutter_body_detection/issues) at the project's GitHub page.
MLKit's Pose Detection and Selfie Segmentation are still in beta and hence this software should also be considered as such.