npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@capacitor-mlkit/pose-detection

v8.2.0

Published

Capacitor plugin for ML Kit Pose Detection on Android and iOS.

Readme

Capacitor ML Kit Pose Detection Plugin

Unofficial Capacitor plugin for ML Kit Pose Detection.[^1]

[!WARNING] The ML Kit Pose Detection API is currently in beta. The API surface and behavior may change in future releases.

Use Cases

The Pose Detection plugin is typically used whenever an app needs to track the position of a person's body in an image, for example:

  • Fitness tracking: Analyze a user's posture and body position while they exercise.
  • Gesture recognition: Detect body gestures to control an app or a game.
  • Augmented reality: Overlay effects or clothing on top of a person's body.
  • Physical therapy: Monitor a patient's movements and range of motion.

Compatibility

| Plugin Version | Capacitor Version | Status | | -------------- | ----------------- | -------------- | | 8.x.x | >=8.x.x | Active support |

Installation

You can use our AI-Assisted Setup to install the plugin. Add the Capawesome Skills to your AI tool using the following command:

npx skills add capawesome-team/skills --skill capacitor-plugins

Then use the following prompt:

Use the `capacitor-plugins` skill from `capawesome-team/skills` to install the `@capacitor-mlkit/pose-detection` plugin in my project.

If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:

npm install @capacitor-mlkit/pose-detection
npx cap sync

Attention: This plugin only supports CocoaPods for iOS dependency management. Swift Package Manager (SPM) is not supported for the ML Kit SDK, see this comment.

Android

Variables

If needed, you can define the following project variables in your app’s variables.gradle file to change the default version of the dependencies:

  • $mlkitPoseDetectionVersion version of com.google.mlkit:pose-detection (default: 18.0.0-beta5)
  • $mlkitPoseDetectionAccurateVersion version of com.google.mlkit:pose-detection-accurate (default: 18.0.0-beta5)

This can be useful if you encounter dependency conflicts with other plugins in your project.

iOS

Minimum Deployment Target

Make sure to set the deployment target in your ios/App/Podfile to at least 15.5:

platform :ios, '15.5'

Configuration

No configuration required for this plugin.

Demo

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

Usage

The following example shows how to detect the pose of a person in an image.

Detect a pose in an image

Detect the pose of a person in an image at a local path. You can optionally select the performance mode of the pose detector. Only available on Android and iOS:

import { PoseDetection, PerformanceMode } from '@capacitor-mlkit/pose-detection';

const processImage = async () => {
  const { poses } = await PoseDetection.processImage({
    path: 'path/to/image.jpg',
    performanceMode: PerformanceMode.Base,
  });
  return poses;
};

API

processImage(...)

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

Detects the pose of a person in the supplied image.

The API detects the pose of a single (most prominent) person and returns all 33 skeletal landmarks with their positions.

Only available on Android and iOS.

| Param | Type | | ------------- | ------------------------------------------------------------------- | | options | ProcessImageOptions |

Returns: Promise<ProcessImageResult>

Since: 8.2.0


Interfaces

ProcessImageResult

| Prop | Type | Description | Since | | ----------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------- | ----- | | poses | Pose[] | The detected poses. The array contains either zero or one pose, because the API only detects the pose of a single person. | 8.2.0 |

Pose

Represents a pose detected in an image.

| Prop | Type | Description | Since | | --------------- | --------------------------- | ------------------------------------------------------------------------------- | ----- | | landmarks | PoseLandmark[] | The detected landmarks of the pose. The array always contains all 33 landmarks. | 8.2.0 |

PoseLandmark

Represents a landmark of a detected pose.

| Prop | Type | Description | Since | | ----------------------- | ------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | | type | PoseLandmarkType | The type of the landmark (e.g. NOSE). | 8.2.0 | | x | number | The x coordinate of the landmark in the image in pixels. | 8.2.0 | | y | number | The y coordinate of the landmark in the image in pixels. | 8.2.0 | | z | number | The z coordinate of the landmark. The value represents the depth of the landmark. The smaller the value, the closer the landmark is to the camera. The origin is the midpoint between the hips. | 8.2.0 | | inFrameLikelihood | number | The likelihood that the landmark is within the image frame. The value is between 0.0 and 1.0. | 8.2.0 |

ProcessImageOptions

| Prop | Type | Description | Default | Since | | --------------------- | ----------------------------------------------------------- | ------------------------------------------ | --------------------------------- | ----- | | path | string | The local path to the image file. | | 8.2.0 | | performanceMode | PerformanceMode | The performance mode of the pose detector. | PerformanceMode.Base | 8.2.0 |

Enums

PoseLandmarkType

| Members | Value | | -------------------- | ------------------------------- | | Nose | 'NOSE' | | LeftEyeInner | 'LEFT_EYE_INNER' | | LeftEye | 'LEFT_EYE' | | LeftEyeOuter | 'LEFT_EYE_OUTER' | | RightEyeInner | 'RIGHT_EYE_INNER' | | RightEye | 'RIGHT_EYE' | | RightEyeOuter | 'RIGHT_EYE_OUTER' | | LeftEar | 'LEFT_EAR' | | RightEar | 'RIGHT_EAR' | | LeftMouth | 'LEFT_MOUTH' | | RightMouth | 'RIGHT_MOUTH' | | LeftShoulder | 'LEFT_SHOULDER' | | RightShoulder | 'RIGHT_SHOULDER' | | LeftElbow | 'LEFT_ELBOW' | | RightElbow | 'RIGHT_ELBOW' | | LeftWrist | 'LEFT_WRIST' | | RightWrist | 'RIGHT_WRIST' | | LeftPinky | 'LEFT_PINKY' | | RightPinky | 'RIGHT_PINKY' | | LeftIndex | 'LEFT_INDEX' | | RightIndex | 'RIGHT_INDEX' | | LeftThumb | 'LEFT_THUMB' | | RightThumb | 'RIGHT_THUMB' | | LeftHip | 'LEFT_HIP' | | RightHip | 'RIGHT_HIP' | | LeftKnee | 'LEFT_KNEE' | | RightKnee | 'RIGHT_KNEE' | | LeftAnkle | 'LEFT_ANKLE' | | RightAnkle | 'RIGHT_ANKLE' | | LeftHeel | 'LEFT_HEEL' | | RightHeel | 'RIGHT_HEEL' | | LeftFootIndex | 'LEFT_FOOT_INDEX' | | RightFootIndex | 'RIGHT_FOOT_INDEX' |

PerformanceMode

| Members | Value | Description | Since | | -------------- | ----------------------- | ----------------------------------------------- | ----- | | Base | 'BASE' | The base model is faster but less accurate. | 8.2.0 | | Accurate | 'ACCURATE' | The accurate model is slower but more accurate. | 8.2.0 |

FAQ

Which platforms are supported by this plugin?

The processImage(...) method is only available on Android and iOS. The Web platform is not supported by the underlying ML Kit Pose Detection SDK.

Which models does the plugin use?

The plugin bundles both the base and the accurate pose detection models. You can select the model at runtime via the performanceMode option. The base model is faster but less accurate, while the accurate model is slower but more accurate.

How much does the plugin increase the app size?

The pose detection models are bundled with the app and increase the app size. The base model adds around 10 MB and the accurate model adds around 26 MB.

How many people can the plugin detect?

The ML Kit Pose Detection API only detects the pose of a single (most prominent) person in an image. If you need to detect the pose of multiple people, this plugin is not suitable.

Can I use this plugin with Ionic, React, Vue or Angular?

Yes, the plugin is framework-agnostic. It works in any Capacitor app regardless of the web framework, including Ionic with Angular, React, or Vue, as well as plain JavaScript projects.

Related Plugins

Terms & Privacy

This plugin uses the Google ML Kit:

Newsletter

Stay up to date with the latest news and updates about the Capawesome, Capacitor, and Ionic ecosystem by subscribing to our Capawesome Newsletter.

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.