6.1.0 • Published 15 days ago

@capacitor-mlkit/selfie-segmentation v6.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
15 days ago

@capacitor-mlkit/selfie-segmentation

Unofficial Capacitor plugin for ML Kit Selfie Segmentation.^1

Installation

npm install @capacitor-mlkit/selfie-segmentation
npx cap sync

Variables

This plugin will use the following project variables (defined in your app’s variables.gradle file):

  • $mlkitSelfieSegmentationVersion version of com.google.mlkit:segmentation-selfie (default: 16.0.0-beta4)

Configuration

No configuration required for this plugin.

Demo

A working example can be found here: robingenz/capacitor-mlkit-plugin-demo

AndroidiOS

Usage

import { SelfieSegmentation } from '@capacitor-mlkit/selfie-segmentation';

const processImage = async () => {
  const { path } = await SelfieSegmentation.processImage({
    path: 'path/to/image.jpg',
    confidence: 0.7,
  });
  return path;
};

API

processImage(...)

processImage(options: ProcessImageOptions) => Promise<ProcessImageResult>

Performs segmentation on an input image.

Only available on Android and iOS.

ParamType
optionsProcessImageOptions

Returns: Promise<ProcessImageResult>

Since: 5.2.0


Interfaces

ProcessImageResult

PropTypeDescriptionSince
pathstringThe path to the segmented image file.5.2.0
widthnumberReturns the width of the image file.5.2.0
heightnumberReturns the height of the image file.5.2.0

ProcessImageOptions

PropTypeDescriptionDefaultSince
pathstringThe local path to the image file.5.2.0
widthnumberScale the image to this width. If no height is given, it will respect the aspect ratio.5.2.0
heightnumberScale the image to this height. If no width is given, it will respect the aspect ratio.5.2.0
confidencenumberSets the confidence threshold.0.95.2.0

Terms & Privacy

This plugin uses the Google ML Kit:

Changelog

See CHANGELOG.md.

License

See LICENSE.

^1: This project is not affiliated with, endorsed by, sponsored by, or approved by Google LLC or any of their affiliates or subsidiaries.

6.1.0

15 days ago

6.0.0

24 days ago

5.4.0

3 months ago

5.3.0

8 months ago

5.2.0

8 months ago