Socket
Socket
Sign inDemoInstall

compreface-js-sdk-test

Package Overview
Dependencies
8
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    compreface-js-sdk-test

JavaScript SDK for CompreFace - free and open-source face recognition system from Exadel


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

CompreFace JavaScript SDK

CompreFace JavaScript SDK makes face recognition into your application even easier.

Table of content

Requirements

Before using our SDK make sure you have installed CompreFace and Nodejs on your machine.

  1. CompreFace(Version 0.4.1)
  2. Nodejs(Version 10+)

Installation

To add CompreFace JS SDK to your project, run the following command in the project folder:

npm i @exadel/compreface-js-sdk

Usage

Initialization

To start using JavaScript SDK you need to import CompreFace object from 'compreface-js-sdk' dependency.

Then you need to init it with url and port. By default, if you run CompreFace on your local machine, it's http://localhost and 8000 respectively. You can pass optional options object when creating CompreFace to set default parameters, see reference for more information.

After you initialized CompreFace object you need to init the service object with the api key of your face collection. You can use this service object to recognize faces.

However, before recognizing you need first to add faces into the face collection. To do this, get the face collection object from the service object.

import { CompreFace } from 'compreface-js-sdk';

let api_key = "your_key";
let url = "http://localhost";
let port = 8000;

let compreFace = new CompreFace(url, port); // set CompreFace url and port 
let recognitionService = compreFace.initFaceRecognitionService(api_key); // initialize service
let faceCollection = recognitionService.getFaceCollection(); // use face collection to fill it with known faces

Adding faces into a face collection

Here is JavaScript code example that shows how to add an image to your face collection from your file system:

let path_to_image = "../images/boy.jpg";
let name = encodeURIComponent('Tom');

faceCollection.add(path_to_image, name)
    .then(response => {
        // your code
    })
    .catch(error => {
        console.log(`Oops! There is problem in uploading image ${error}`)
    })

Recognition

This code snippet shows how to recognize unknown face:

let path_to_image = "../images/team.jpg";

recognitionService.recognize(path_to_image)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem with recognizing image ${error}`)
    })

Reference

CompreFace Global Object

Global CompreFace Object is used for initializing connection to CompreFace and setting default values for options. Default values will be used in every service method if applicable. If the option’s value is set in the global object and passed as a function argument then the function argument value will be used.

Constructor:

new CompreFace(server, port, options)

ArgumentTypeRequiredNotes
urlstringrequiredURL with protocol where CompreFace is located. E.g. http://localhost
portstringrequiredCompreFace port. E.g. 8000
optionsobjectoptionalDefault values for face recognition services

Possible options:

OptionTypeNotes
det_prob_thresholdstringminimum required confidence that a recognized face is actually a face. Value is between 0.0 and 1.0
limitintegermaximum number of faces on the image to be recognized. It recognizes the biggest faces first. Value of 0 represents no limit. Default value: 0
prediction_countobjectmaximum number of subject predictions per face. It returns the most similar subjects. Default value: 1

Example:

let server = "http://localhost";
let port = 8000;
let options = {
  limit: 0, 
  det_prob_threshold: 0.8, 
  prediction_count: 1
}

let compreFace = new CompreFace(server, port, options);

Methods:

  1. compreFace.initFaceRecognitionService(api_key)

Inits face recognition service object.

ArgumentTypeRequiredNotes
api_keystringrequiredFace Collection Api Key in UUID format

Example:

let recognitionService = compreFace.initFaceRecognitionService(api_key);

Recognition Service

Face recognition service is used for face identification. This means that you first need to upload known faces to face collection and then recognize unknown faces among them. When you upload an unknown face, the service returns the most similar faces to it. Also, face recognition service supports verify endpoint to check if this person from face collection is the correct one. For more information, see CompreFace page.

Methods:

Recognize Faces from a Given Image

recognitionService.recognize(image_location, options)

Recognizes all faces from the image. The first argument is the image location, it could be a URL or a path on the local machine.

ArgumentTypeRequiredNotes
image_locationstringrequiredURL or local machine path to the image you want to recognize
optionsstringoptionalObject that defines recognition options

Supported options:

OptionTypeNotes
det_prob_thresholdstringminimum required confidence that a recognized face is actually a face. Value is between 0.0 and 1.0
limitintegermaximum number of faces on the image to be recognized. It recognizes the biggest faces first. Value of 0 represents no limit. Default value: 0
prediction_countobjectmaximum number of subject predictions per face. It returns the most similar subjects. Default value: 1

Response:

{
 "result": [
   {
     "box": {
       "probability": 0.9,
       "x_max": 50,
       "y_max": 50,
       "x_min": 500,
       "y_min": 500
     },
     "faces": [
       {
         "similarity": 0.9,
         "subject": "example1"
       }
     ]
   }
 ]
}
ElementTypeDescription
boxobjectlist of parameters of the bounding box for this face
probabilityfloatprobability that a found face is actually a face
x_max, y_max, x_min, y_minintegercoordinates of the frame containing the face
faceslistlist of similar faces with size of <prediction_count> order by similarity
similarityfloatsimilarity that on that image predicted person
subjectstringName or any other person ID saved in Face Collection

Example:

let image_location = "../images/team.jpg";
let options = {
    limit: 0,
    det_prob_threshold: 0.8,
    prediction_count: 1
}

recognitionService.recognize(image_location, options)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem with recognizing image ${error}`)
    })
Get Face Collection

recognitionService.getFaceCollection()

Returns Face collection object

Face Collection Object

Face collection could be used to manage known faces, e.g. add, list, or delete them. Face recognition is performed for the saved known faces in face collection, so before using the recognize method you need to save at least one face into the face collection.

Methods:

Add an Example of a Subject

faceCollection.add(image_location, subject, options)

Adds an image to your face collection.

ArgumentTypeRequiredNotes
image_locationstringrequiredURL or local machine path to the image you want to add to face collection
subjectstringrequiredName or any other person ID. It can be just a random string you generate and save for further identification
optionsstringoptionalObject that defines adding options

Supported options:

OptionTypeNotes
det_prob_thresholdstringminimum required confidence that a recognized face is actually a face. Value is between 0.0 and 1.0

Response:

{
 "image_id": "string",
 "subject": "string"
}
FieldstringNotes
image_idstringID of the saved image
subjectstringName or any other person ID

Example:

let image_location = "../images/boy.jpg";
let name = encodeURIComponent('Tom');
let options = {
    det_prob_threshold: 0.8
}

faceCollection.add(image_location, name, options)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem in uploading image ${error}`)
    })
List of All Saved Subjects

faceCollection.list()

Retrieve a list of images saved in a Face Collection

Response:

{
  "faces": [
    {
      "image_id": "string",
      "subject": "string"
    }
  ]
}
FieldstringNotes
image_idstringID of the saved image
subjectstringName or any other person ID

Example:

faceCollection.list()
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem: ${error}`)
    })
Delete an Example of the Subject by ID

faceCollection.delete(image_id)

Remove image from face collection.

ArgumentTypeRequiredNotes
image_idstringrequiredID of the saved image

Response:

{
 "image_id": "string",
 "subject": "string"
}
FieldstringNotes
image_idstringID of the deleted image
subjectstringName or any other person ID

Example:

let image_id = "79ed78d8-f015-4947-b297-a24306ebbdad";

faceCollection.delete(image_id)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem ${error}`)
    })
Delete All Examples of the Subject by Name

faceCollection.delete_all_subject(subject)

Removes image(s) according to their given subject.

ArgumentTypeRequiredNotes
subjectstringoptionalName or any other person ID. If empty deletes all images in the face collection

Response:

[
  {
    "image_id": "string",
    "subject": "string"
  }
]
FieldstringNotes
image_idstringID of the deleted image
subjectstringName or any other person ID

Example:

let subject = "Tom";

faceCollection.delete(subject)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem ${error}`)
    })
Verify Faces from a Given Image

faceCollection.verify(image_path, image_id, options)

Compares similarities of given image with image from your face collection.

ArgumentTypeRequiredNotes
image_locationstringrequiredURL or local machine path to the image you want to recognize
optionsstringoptionalObject that defines recognition options

Supported options:

OptionTypeNotes
det_prob_thresholdstringminimum required confidence that a recognized face is actually a face. Value is between 0.0 and 1.0
limitintegermaximum number of faces on the image to be recognized. It recognizes the biggest faces first. Value of 0 represents no limit. Default value: 0
prediction_countobjectmaximum number of subject predictions per face. It returns the most similar subjects. Default value: 1

Response:

{
 "result": {
   "box": {
     "probability": 0.9,
     "x_max": 50,
     "y_max": 50,
     "x_min": 500,
     "y_min": 500
   },
   "faces": [
     {
       "similarity": 0.9,
       "subject": "example1"
     }
   ]
 }
}
ElementTypeDescription
boxobjectlist of parameters of the bounding box for this face
probabilityfloatprobability that a found face is actually a face
x_max, y_max, x_min, y_minintegercoordinates of the frame containing the face
faceslistlist of similar faces with size of <prediction_count> order by similarity
similarityfloatsimilarity that on that image predicted person
subjectstringName or any other person ID saved in Face Collection
let image_location = "../images/team.jpg";
let image_id = "79ed78d8-f015-4947-b297-a24306ebbdad";
let options = {
    limit: 0,
    det_prob_threshold: 0.8,
    prediction_count: 1
}

faceCollection.verify(image_location, image_id, options)
    .then(response => {
        console.log(JSON.stringify(response));
    })
    .catch(error => {
        console.log(`Oops! There is problem with verifying image ${error}`)
    })

Keywords

FAQs

Last updated on 09 Apr 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc