Skip to content

thatsongkim/vision-camera-pose-detector

Repository files navigation

vision-camera-pose-detector

MLKit PoseDetectionAccurate for react-native-vision-camera V3

Installation

npm install vision-camera-pose-detector

or

yarn add vision-camera-pose-detector

Usage

import { detectPose } from "vision-camera-pose-detector";

// ...

const frameProcessor = useFrameProcessor((frame) => {
  'worklet';
  const pose = detectPose(frame);
}, []);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library