
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
ee-face-detection
Advanced tools
Detects faces in images and computes a focal point for the image. Helps you crop the right part of the image
Detects faces in images and returns a focal point. Is used to crop the right part of an image. You should use this in conjunction with the ee-image-worker package which has support for cropping using focal points.
The face-detector runs in a separate process & is multithreaded. Its really slow because it does a set of different detections on each image :(
You have first to install native dependecies
sudo apt-get install libcv-dev libopencv-dev libhighgui-dev libjpeg-dev libpng-dev libwebp-dev libtiff-dev
sudo brew install opencv
sudo port install jpeg libpng tiff webp
var FaceDetection = require('ee-face-detection');
// create an instacne
var detector = new FaceDetection();
// get focal point for an image
detector.detect(imageBuffer, function(err, focalPoint) {
if (err) log('#Fail :(');
else if (focalPoint) log('Yeah, we got it! x %s, y %s :)', focalPoint.x, focalPoint.y);
else log('sorry, failed to detect any faces in this image ...'');
});
FAQs
Detects faces in images and computes a focal point for the image. Helps you crop the right part of the image
The npm package ee-face-detection receives a total of 6 weekly downloads. As such, ee-face-detection popularity was classified as not popular.
We found that ee-face-detection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.