🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

react-use-face-detection

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-use-face-detection

Face detection React hook powered by @mediapipe/face_detection, @mediapipe/camera_utils, react-webcam

1.0.2
latest
npm
Version published
Weekly downloads
805
22.34%
Maintainers
0
Weekly downloads
 
Created
Source

logo

useFaceDetection Hook

✨ Live Demo ✨

📚 Introduction

Simple React Hook to detect faces from an HTMLImageElement or react-webcam video source. Powered by MediaPipe

💡 Usage

🧰 Installation

To install, you can use npm or yarn:

npm

npm install react-use-face-detection

yarn

yarn add react-use-face-detection

⚙️ Options

NameTypeOptionalDescription
mirroredbooleantrueThis enables a mirrored detection of the faces in the provided media source - e.g. if you flip the media source horizontally, this would enable the correct output of your flipped media source.
handleOnResults(results: FaceDetectionResults) => voidtrueCallback function that returns the FaceDetectionResults
faceDetectionOptionsFaceDetectionOptionstrueOptions for configuring the face detection model - see https://google.github.io/mediapipe/solutions/face_detection.html#javascript-solution-api
faceDetectionFaceDetectionfalseInitialize the face detection model from @mediapipe/face_detection
camera(cameraOptions: CameraOptions) => CameratrueInitialize the camera utility model from @mediapipe/camera_utils

🎁 Returned Values

NameTypeDescription
boundingBoxBoundingBox[]Returns details and coordinates of the bounding box around the detected face(s)
isLoadingbooleanReturns a boolean that detects whether if the model has been loaded
detectedbooleanReturns a boolean that detects whether if a face has been detected
facesDetectednumberReturns a number of faces that have been detected
webcamRefLegacyRefReturns a ref object for the react-webcam <Webcam/> node
imgRefRefObjectReturns a ref object for the <img/> element

👷 Built With

📚 Author

Keywords

React

FAQs

Package last updated on 30 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts