
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
face-detection
Advanced tools
Simple face detection class based on OpenCV for Node.js on top of C++ APIS.
Simple face detection class based on OpenCV for Node.js on top of C++ APIS.
$ yarn add face-detection
or
$ npm install --save face-detection
Note: installation may require some minutes. This library uses opencv4nodejs
which needs to be compiled from sources and that process is gonna take some time.
import FaceDetection as FD from 'face-detection'
async function detection() {
const IMG = await FD.readImg('./foo.jpg') // this will return a cvImgObject
const RES = await FD.detect(IMG)
console.log(JSON.stringify(RES, null, 2))
}
detection()
output:
{
"objects": [
{
"height": 69, // height of face bounding
"width": 69, // width of face bounding
"y": 69, // y coordinate of left-up bounding corner
"x": 345 // x coordinate of left-up bounding corner
},
{
"height": 148, // height of face bounding
"width": 148, // width of face bounding
"y": 4, // y coordinate of left-up bounding corner
"x": 300 // x coordinate of left-up bounding corner
}
],
"numDetections": [ // numDetections.length = number of faces found
71, // accuracy
4 // accuracy
]
}
FAQs
Simple face detection class based on OpenCV for Node.js on top of C++ APIS.
The npm package face-detection receives a total of 1 weekly downloads. As such, face-detection popularity was classified as not popular.
We found that face-detection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.