Socket
Book a DemoInstallSign in
Socket

jaakrecog-liveness

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jaakrecog-liveness

is a facial recognition plugin whose intention is to be a proof of life, this plugin has been developed to be used in projects with Angular@^8.1.1

latest
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

JAAKRECOG-Liveness

is a facial recognition plugin whose intention is to be a proof of life, this plugin has been developed to be used in projects with Angular @^8.1.1

Installation

Use the package manager npm to install

npm install jaakrecog-liveness

Setup

Initial setup set the plugin assets on angular.json file. Add { "glob": "**/*", "input": "./node_modules/jaakrecog-liveness/src/lib/weights", "output": "/assets/weights/" } inside of projects.app.architect.build.assets .

set the script on angular.json file. Add "./node_modules/face-api.js/dist/face-api.min.js" inside of projects.app.architect.build.scripts.

Note: If is an Angular pure project add "paths": { "@angular/*": [ "./node_modules/@angular/*" ] } inside of "compilerOptions" on tsconfig.json file.

Usage

Import the module into your app.module.ts file.

import { JaakRecogLivenessModule } from 'jaakrecog-liveness';

@NgModule({
  declarations: [AppComponent],
  entryComponents: [],
  imports: [
    BrowserModule,
    IonicModule.forRoot(),
    AppRoutingModule,
    JaakRecogLivenessModule,
  ],
  providers: [{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }],
  bootstrap: [AppComponent],
})

On yout HTML file you have to use the directive <jaakrecog-liveness>

<div class="container">
<jaakrecog-liveness [videoDuration]="3000" (getResult)="checkingVideo($event)"> </jaakrecog-liveness>
</div>

Inputs

All plugin inputs

InputDescriptionDefault value
urlThe server or IP address (string)'https://jaakrecog.jaak-it.com/'
videoDurationRecording time in milliseconds (number)3000
animationShow animation (boolean)true
landmarksLandmarks on tracking facetrue
trackingFaceTrack the face on videotrue

Outputs

All plugin output

OutputDescription
getResultEmit the result of the video
trackFaceResultEmit the result of the tracking face (only if trackingFace is true)

Support

To get more help contact us soporte@jaak-it.com

Keywords

liveness

FAQs

Package last updated on 18 Feb 2021

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