Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

face-detection

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

face-detection

Simple face detection class based on OpenCV for Node.js on top of C++ APIS.

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

👤 Face Detection OCV3.js

Simple face detection class based on OpenCV for Node.js on top of C++ APIS.

Installation

$ 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.

Usage

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
  ]
}

Examples

example1 example2 example3 example4

FAQs

Package last updated on 23 Nov 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc