face-api/README.md

474 lines
18 KiB
Markdown
Raw Normal View History

2021-04-03 17:02:49 +02:00
![Git Version](https://img.shields.io/github/package-json/v/vladmandic/face-api?style=flat-square&svg=true&label=git)
![NPM Version](https://img.shields.io/npm/v/@vladmandic/face-api.png?style=flat-square)
2021-03-15 13:37:40 +01:00
![Last Commit](https://img.shields.io/github/last-commit/vladmandic/face-api?style=flat-square?svg=true)
![License](https://img.shields.io/github/license/vladmandic/face-api?style=flat-square?svg=true)
![GitHub Status Checks](https://img.shields.io/github/checks-status/vladmandic/face-api/master?style=flat-square?svg=true)
![Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/vladmandic/face-api?style=flat-square?svg=true)
2021-03-08 20:26:04 +01:00
2021-03-08 21:07:31 +01:00
# FaceAPI
2021-03-25 03:37:43 +01:00
**AI-powered Face Detection, Description & Recognition for Browser and NodeJS using Tensorflow/JS**
2021-03-07 16:05:35 +01:00
<br>
2021-03-14 13:47:38 +01:00
**Live Demo**: <https://vladmandic.github.io/face-api/demo/webcam.html>
<br>
## Documentation
- [**Tutorial**](TUTORIAL.md)
- [**API Specification**](https://vladmandic.github.io/face-api/typedoc/index.html)
2021-03-07 16:05:35 +01:00
2021-03-13 18:21:32 +01:00
<br><hr><br>
2020-12-08 14:33:00 +01:00
## Examples
<br>
### Browser
2021-03-13 18:21:32 +01:00
Browser example that uses static images and showcases both models
2021-03-14 13:47:38 +01:00
as well as all of the extensions is included in `/demo/index.html`
2021-03-13 18:21:32 +01:00
Example can be accessed directly using Git pages using URL:
2021-03-14 13:47:38 +01:00
<https://vladmandic.github.io/face-api/demo/index.html>
2021-01-10 16:35:51 +01:00
2021-03-14 13:47:38 +01:00
Browser example that uses live webcam is included in `/demo/webcam.html`
2021-03-13 18:21:32 +01:00
Example can be accessed directly using Git pages using URL:
2021-03-14 13:47:38 +01:00
<https://vladmandic.github.io/face-api/demo/webcam.html>
2021-01-10 16:35:51 +01:00
2020-12-08 14:33:00 +01:00
<br>
2021-03-14 13:47:38 +01:00
**Demo using FaceAPI to process images**
2020-12-08 14:33:00 +01:00
*Note: Photos shown below are taken by me*
2021-03-14 13:47:38 +01:00
![screenshot](demo/screenshot-images.png)
**Demo using FaceAPI to process live webcam**
![screenshot](demo/screenshot-webcam.png)
2020-12-08 14:33:00 +01:00
<br>
### NodeJS
2021-03-23 14:36:41 +01:00
Three NodeJS examples are:
2020-12-08 14:33:00 +01:00
2021-03-26 15:26:02 +01:00
- `/demo/node.js`:
2021-03-23 14:36:41 +01:00
Regular usage of `FaceAPI` from `NodeJS`
Using `TFJS` native methods to load images
- `/demo/node-canvas.js`:
Regular usage of `FaceAPI` from `NodeJS`
Using external `canvas` module to load images
Which also allows for image drawing and saving inside `NodeJS`
2021-03-14 13:47:38 +01:00
- `/demo/node-multiprocess.js`:
Multiprocessing showcase that uses pool of worker processes
(`node-multiprocess-worker.js`)
Main starts fixed pool of worker processes with each worker having
it's instance of `FaceAPI`
Workers communicate with main when they are ready and main dispaches
job to each ready worker until job queue is empty
2020-12-08 14:33:00 +01:00
```json
2021-03-14 13:47:38 +01:00
2021-03-14 08:42:03 INFO: @vladmandic/face-api version 1.0.2
2021-03-14 08:42:03 INFO: User: vlado Platform: linux Arch: x64 Node: v15.7.0
2021-03-14 08:42:03 INFO: FaceAPI multi-process test
2021-03-14 08:42:03 STATE: Main: started worker: 1888019
2021-03-14 08:42:03 STATE: Main: started worker: 1888025
2021-03-14 08:42:04 STATE: Worker: PID: 1888025 TensorFlow/JS 3.3.0 FaceAPI 1.0.2 Backend: tensorflow
2021-03-14 08:42:04 STATE: Worker: PID: 1888019 TensorFlow/JS 3.3.0 FaceAPI 1.0.2 Backend: tensorflow
2021-03-14 08:42:04 STATE: Main: dispatching to worker: 1888019
2021-03-14 08:42:04 STATE: Main: dispatching to worker: 1888025
2021-03-14 08:42:04 DATA: Worker received message: 1888019 { image: 'demo/sample1.jpg' }
2021-03-14 08:42:04 DATA: Worker received message: 1888025 { image: 'demo/sample2.jpg' }
2021-03-14 08:42:06 DATA: Main: worker finished: 1888025 detected faces: 3
2021-03-14 08:42:06 STATE: Main: dispatching to worker: 1888025
2021-03-14 08:42:06 DATA: Worker received message: 1888025 { image: 'demo/sample3.jpg' }
2021-03-14 08:42:06 DATA: Main: worker finished: 1888019 detected faces: 3
2021-03-14 08:42:06 STATE: Main: dispatching to worker: 1888019
2021-03-14 08:42:06 DATA: Worker received message: 1888019 { image: 'demo/sample4.jpg' }
2021-03-14 08:42:07 DATA: Main: worker finished: 1888025 detected faces: 3
2021-03-14 08:42:07 STATE: Main: dispatching to worker: 1888025
2021-03-14 08:42:07 DATA: Worker received message: 1888025 { image: 'demo/sample5.jpg' }
2021-03-14 08:42:08 DATA: Main: worker finished: 1888019 detected faces: 4
2021-03-14 08:42:08 STATE: Main: dispatching to worker: 1888019
2021-03-14 08:42:08 DATA: Worker received message: 1888019 { image: 'demo/sample6.jpg' }
2021-03-14 08:42:09 DATA: Main: worker finished: 1888025 detected faces: 5
2021-03-14 08:42:09 STATE: Main: worker exit: 1888025 0
2021-03-14 08:42:09 DATA: Main: worker finished: 1888019 detected faces: 4
2021-03-14 08:42:09 INFO: Processed 15 images in 5944 ms
2021-03-14 08:42:09 STATE: Main: worker exit: 1888019 0
2020-12-08 14:33:00 +01:00
```
2021-03-14 13:47:38 +01:00
Note that `@tensorflow/tfjs-node` or `@tensorflow/tfjs-node-gpu`
must be installed before using NodeJS example
2020-12-08 14:33:00 +01:00
2021-03-13 18:21:32 +01:00
<br><hr><br>
2020-12-08 14:33:00 +01:00
2021-04-05 15:36:26 +02:00
## Quick Start
Simply include latest version of `FaceAPI` directly from a CDN in your HTML:
```html
<script src="https://cdn.jsdelivr.net/npm/@vladmandic/face-api/dist/face-api.js"></script>
```
2021-04-09 00:26:07 +02:00
or
```html
<script src="https://unpkg.dev/@vladmandic/face-api/dist/face-api.js"></script>
```
2020-08-27 14:58:00 +02:00
## Installation
2020-08-26 00:24:48 +02:00
2021-04-05 15:36:26 +02:00
`FaceAPI` ships with several pre-build versions of the library:
2020-12-02 23:24:40 +01:00
2021-02-21 16:00:57 +01:00
- `dist/face-api.js`: IIFE format for client-side Browser execution
*with* TFJS pre-bundled
- `dist/face-api.esm.js`: ESM format for client-side Browser execution
*with* TFJS pre-bundled
- `dist/face-api.esm-nobundle.js`: ESM format for client-side Browser execution
*without* TFJS pre-bundled
- `dist/face-api.node.js`: CommonJS format for server-side NodeJS execution
*without* TFJS pre-bundled
- `dist/face-api.node-gpu.js`: CommonJS format for server-side NodeJS execution
*without* TFJS pre-bundled and optimized for CUDA GPU acceleration
- `dist/face-api.node-cpu.js`: CommonJS format for server-side NodeJS execution
*without* TFJS pre-bundled and using JS engine for platforms where tensorflow binary library version is not available
2020-10-15 12:48:39 +02:00
Defaults are:
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
```json
{
2020-12-02 23:24:40 +01:00
"main": "dist/face-api.node-js",
2020-10-15 12:48:39 +02:00
"module": "dist/face-api.esm.js",
"browser": "dist/face-api.esm.js",
}
```
Bundled `TFJS` can be used directly via export: `faceapi.tf`
2021-03-14 13:47:38 +01:00
Reason for additional `nobundle` version is if you want to
include a specific version of TFJS and not rely on pre-packaged one
2020-10-15 12:48:39 +02:00
`FaceAPI` is compatible with TFJS 2.0+
2021-03-09 23:33:30 +01:00
All versions include `sourcemap`
2021-03-23 20:48:23 +01:00
<br><hr><br>
2020-10-15 12:48:39 +02:00
2021-04-05 15:36:26 +02:00
There are several ways to use FaceAPI:
2020-09-09 15:29:24 +02:00
2020-10-11 18:50:50 +02:00
### 1. IIFE script
2020-10-13 22:57:06 +02:00
*Recommened for quick tests and backward compatibility with older Browsers that do not support ESM such as IE*
This is simplest way for usage within Browser
2021-04-05 15:36:26 +02:00
Simply download `dist/face-api.js`, include it in your `HTML` file & it's ready to use:
2020-10-11 18:50:50 +02:00
```html
<script src="dist/face-api.js"><script>
2021-03-07 13:26:23 +01:00
```
2020-10-11 18:50:50 +02:00
2021-04-05 15:36:26 +02:00
Or skip the download and include it directly from a CDN:
```html
<script src="https://cdn.jsdelivr.net/npm/@vladmandic/face-api/dist/face-api.js"></script>
```
2020-10-15 12:48:39 +02:00
IIFE script bundles TFJS and auto-registers global namespace `faceapi` within Window object which can be accessed directly from a `<script>` tag or from your JS file.
2020-10-11 18:50:50 +02:00
<br>
2020-10-13 22:57:06 +02:00
### 2. ESM module
2020-10-11 18:50:50 +02:00
2020-10-13 22:57:06 +02:00
*Recommended for usage within Browser*
2020-10-11 18:50:50 +02:00
2020-10-15 12:48:39 +02:00
#### 2.1. Direct Import
2020-10-11 18:50:50 +02:00
2020-10-13 22:57:06 +02:00
To use ESM import directly in a Browser, you must import your script (e.g. `index.js`) with a `type="module"`
```html
<script src="./index.js" type="module">
```
2021-03-07 13:26:23 +01:00
2020-10-13 22:57:06 +02:00
and then in your `index.js`
2020-10-11 18:50:50 +02:00
```js
import * as faceapi from 'dist/face-api.esm.js';
```
2020-10-15 12:48:39 +02:00
#### 2.2. With Bundler
2020-10-13 22:57:06 +02:00
Same as above, but expectation is that you've installed `@vladmandic/faceapi` package:
2021-03-07 13:26:23 +01:00
```shell
npm install @vladmandic/face-api
```
and that you'll package your application using a bundler such as `webpack`, `rollup` or `esbuild`
2020-10-15 12:48:39 +02:00
in which case, you do not need to import a script as module - that depends on your bundler configuration
2020-10-11 18:50:50 +02:00
```js
2020-10-15 12:48:39 +02:00
import * as faceapi from '@vladmandic/face-api';
```
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
or if your bundler doesn't recognize `recommended` type, force usage with:
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
```js
import * as faceapi from '@vladmandic/face-api/dist/face-api.esm.js';
```
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
or to use non-bundled version
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
```js
import * as tf from `@tensorflow/tfjs`;
import * as faceapi from '@vladmandic/face-api/dist/face-api.esm-nobundle.js';
2020-10-11 18:50:50 +02:00
```
<br>
2020-10-11 18:50:50 +02:00
### 3. NPM module
2020-10-15 12:48:39 +02:00
#### 3.1. Import CommonJS
2020-10-13 22:57:06 +02:00
*Recommended for NodeJS projects*
2020-10-11 18:50:50 +02:00
2021-04-05 15:36:26 +02:00
*Node: FaceAPI for NodeJS does not bundle TFJS due to binary dependencies that are installed during TFJS installation*
2020-10-11 18:50:50 +02:00
Install with:
2021-03-07 13:26:23 +01:00
2020-10-11 18:50:50 +02:00
```shell
npm install @tensorflow/tfjs-node
2020-10-13 22:57:06 +02:00
npm install @vladmandic/face-api
2020-10-11 18:50:50 +02:00
```
2021-03-07 13:26:23 +01:00
2020-10-11 18:50:50 +02:00
And then use with:
2021-03-07 13:26:23 +01:00
2020-10-11 18:50:50 +02:00
```js
const tf = require('@tensorflow/tfjs-node')
2020-10-15 12:48:39 +02:00
const faceapi = require('@vladmandic/face-api');
2020-10-11 18:50:50 +02:00
```
If you want to force CommonJS module instead of relying on `recommended` field:
2021-03-07 13:26:23 +01:00
2020-10-13 22:57:06 +02:00
```js
2020-10-27 21:35:40 +01:00
const faceapi = require('@vladmandic/face-api/dist/face-api.node.js');
2020-10-15 12:48:39 +02:00
```
If you want to GPU Accelerated execution in NodeJS, you must have CUDA libraries already installed and working
2021-04-05 15:36:26 +02:00
Then install appropriate version of `FaceAPI`:
2020-10-15 12:48:39 +02:00
```shell
npm install @tensorflow/tfjs-node
2020-10-15 12:48:39 +02:00
npm install @vladmandic/face-api
```
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
And then use with:
2021-03-07 13:26:23 +01:00
2020-10-15 12:48:39 +02:00
```js
const tf = require('@tensorflow/tfjs-node-gpu')
const faceapi = require('@vladmandic/face-api/dist/face-api.node-gpu.js'); // this loads face-api version with correct bindings for tfjs-node-gpu
2020-10-15 12:48:39 +02:00
```
2020-09-01 15:28:44 +02:00
2021-04-05 15:36:26 +02:00
If you want to use `FaceAPI` in a NodeJS on platforms where NodeJS binary libraries are not supported, you can use JavaScript CPU backend.
2021-02-21 16:00:57 +01:00
```shell
npm install @tensorflow/tfjs
npm install @vladmandic/face-api
```
2021-03-07 13:26:23 +01:00
2021-02-21 16:00:57 +01:00
And then use with:
2021-03-07 13:26:23 +01:00
2021-02-21 16:00:57 +01:00
```js
const tf = require('@tensorflow/tfjs')
2021-03-07 13:26:23 +01:00
const faceapi = require('@vladmandic/face-api/dist/face-api.node-cpu.js');
```
2021-03-13 18:21:32 +01:00
If you want to use graphical functions inside NodeJS,
you must provide appropriate graphical library as
NodeJS does not include implementation for DOM elements
such as HTMLImageElement or HTMLCanvasElement:
2021-03-07 13:26:23 +01:00
Install `Canvas` for NodeJS:
```shell
npm install canvas
```
Patch NodeJS environment to use newly installed `Canvas` library:
```js
const canvas = require('canvas');
const faceapi = require('@vladmandic/face-api');
const { Canvas, Image, ImageData } = canvas
faceapi.env.monkeyPatch({ Canvas, Image, ImageData })
2021-02-21 16:00:57 +01:00
```
2021-03-23 20:48:23 +01:00
<br><hr><br>
2020-12-08 14:33:00 +01:00
2020-08-26 00:24:48 +02:00
## Weights
2020-08-27 15:17:39 +02:00
Pretrained models and their weights are includes in `./model`.
2020-08-18 14:01:56 +02:00
2021-03-23 20:48:23 +01:00
<br><hr><br>
2021-01-10 16:35:51 +01:00
## Test & Dev Web Server
Built-in test&dev web server can be started using
2021-03-07 13:26:23 +01:00
2021-01-10 16:35:51 +01:00
```shell
npm run dev
```
By default it starts HTTP server on port 8000 and HTTPS server on port 8001 and can be accessed as:
2021-03-07 13:26:23 +01:00
2021-03-14 13:47:38 +01:00
- <https://localhost:8001/demo/index.html>
- <https://localhost:8001/demo/webcam.html>
2021-01-10 16:35:51 +01:00
```json
2021-03-14 13:47:38 +01:00
2021-03-14 08:41:09 INFO: @vladmandic/face-api version 1.0.2
2021-03-14 08:41:09 INFO: User: vlado Platform: linux Arch: x64 Node: v15.7.0
2021-03-14 08:41:09 INFO: Build: file startup all target: es2018
2021-03-14 08:41:09 STATE: HTTP server listening: 8000
2021-03-14 08:41:09 STATE: HTTP2 server listening: 8001
2021-03-14 08:41:09 STATE: Monitoring: [ 'package.json', 'demo', 'src', [length]: 3 ]
2021-03-14 08:41:10 STATE: Build for: browserBundle type: tfjs: { modules: 1258, moduleBytes: 4040087, imports: 7, importBytes: 276, outputBytes: 1072314, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:41:10 STATE: Build for: browserBundle type: iife: { imports: 160, importBytes: 1305679, outputBytes: 1151683, outputFiles: 'dist/face-api.js' }
2021-03-14 08:41:10 STATE: Build for: browserBundle type: esm: { imports: 160, importBytes: 1305679, outputBytes: 1151520, outputFiles: 'dist/face-api.esm.js' }
2021-01-10 16:35:51 +01:00
```
2021-03-23 20:48:23 +01:00
<br><hr><br>
2020-12-08 14:33:00 +01:00
2020-08-18 14:01:56 +02:00
## Build
2020-10-11 18:41:17 +02:00
If you want to do a full rebuild, either download npm module
2021-03-07 13:26:23 +01:00
2020-10-11 18:41:17 +02:00
```shell
npm install @vladmandic/face-api
cd node_modules/@vladmandic/face-api
```
2020-08-31 00:45:06 +02:00
2020-10-11 18:41:17 +02:00
or clone a git project
2021-03-07 13:26:23 +01:00
2020-10-11 18:41:17 +02:00
```shell
git clone https://github.com/vladmandic/face-api
cd face-api
```
2020-08-18 14:01:56 +02:00
2020-10-11 18:41:17 +02:00
Then install all dependencies and run rebuild:
2021-03-07 13:26:23 +01:00
2020-08-18 14:01:56 +02:00
```shell
2020-10-11 18:41:17 +02:00
npm install
2020-08-18 14:01:56 +02:00
npm run build
```
Build process uses script `build.js` that creates optimized build for each target:
2020-08-18 13:54:53 +02:00
```text
2021-03-14 13:47:38 +01:00
> @vladmandic/face-api@1.0.2 build
> rimraf dist/* types/* typedoc/* && node server/build.js
```
2021-01-10 16:35:51 +01:00
```json
2021-03-14 13:47:38 +01:00
2021-03-14 08:39:21 INFO: @vladmandic/face-api version 1.0.2
2021-03-14 08:39:21 INFO: User: vlado Platform: linux Arch: x64 Node: v15.7.0
2021-03-14 08:39:21 INFO: Build: file startup all target: es2018
2021-03-14 08:39:21 STATE: Build for: node type: tfjs: { imports: 1, importBytes: 143, outputBytes: 731, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:39:21 STATE: Build for: node type: node: { imports: 160, importBytes: 234096, outputBytes: 85371, outputFiles: 'dist/face-api.node.js' }
2021-03-14 08:39:21 STATE: Build for: nodeGPU type: tfjs: { imports: 1, importBytes: 147, outputBytes: 735, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:39:21 STATE: Build for: nodeGPU type: node: { imports: 160, importBytes: 234100, outputBytes: 85379, outputFiles: 'dist/face-api.node-gpu.js' }
2021-03-14 08:39:21 STATE: Build for: nodeCPU type: tfjs: { imports: 1, importBytes: 138, outputBytes: 726, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:39:21 STATE: Build for: nodeCPU type: node: { imports: 160, importBytes: 234091, outputBytes: 85370, outputFiles: 'dist/face-api.node-cpu.js' }
2021-03-14 08:39:21 STATE: Build for: browserNoBundle type: tfjs: { imports: 1, importBytes: 276, outputBytes: 244, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:39:21 STATE: Build for: browserNoBundle type: esm: { imports: 160, importBytes: 233609, outputBytes: 82634, outputFiles: 'dist/face-api.esm-nobundle.js' }
2021-03-14 08:39:22 STATE: Build for: browserBundle type: tfjs: { modules: 1258, moduleBytes: 4040087, imports: 7, importBytes: 276, outputBytes: 1072314, outputFiles: 'dist/tfjs.esm.js' }
2021-03-14 08:39:22 STATE: Build for: browserBundle type: iife: { imports: 160, importBytes: 1305679, outputBytes: 1151683, outputFiles: 'dist/face-api.js' }
2021-03-14 08:39:22 STATE: Build for: browserBundle type: esm: { imports: 160, importBytes: 1305679, outputBytes: 1151520, outputFiles: 'dist/face-api.esm.js' }
2021-03-14 08:39:22 INFO: Compile typings: [ 'src/index.ts', [length]: 1 ]
2021-03-14 08:39:27 INFO: Update Change log: [ '/home/vlado/dev/face-api/CHANGELOG.md', [length]: 1 ]
2021-03-14 08:39:27 INFO: Generate TypeDocs: [ 'src/index.ts', [length]: 1 ]
```
2020-08-18 13:54:53 +02:00
2021-03-23 20:48:23 +01:00
<br><hr><br>
2021-03-07 13:26:23 +01:00
## Face Mesh
2021-03-07 15:58:20 +01:00
`FaceAPI` landmark model returns 68-point face mesh as detailed in the image below:
2021-03-07 13:26:23 +01:00
2021-03-14 13:47:38 +01:00
![facemesh](demo/facemesh.png)
2021-03-07 13:26:23 +01:00
2021-03-23 20:48:23 +01:00
<br><hr><br>
## Note
This is updated **face-api.js** with latest available TensorFlow/JS as the original is not compatible with **tfjs 2.0+**.
Forked from [face-api.js](https://github.com/justadudewhohacks/face-api.js) version **0.22.2** which was released on March 22nd, 2020
Currently based on **`TensorFlow/JS` 3.3.0**
2021-04-05 15:36:26 +02:00
*Why?* I needed FaceAPI that does not cause version conflict with newer versions of TensorFlow
And since original FaceAPI was open-source, I've released this version as well
2021-03-23 20:48:23 +01:00
Changes ended up being too large for a simple pull request
and it ended up being a full-fledged version on its own
Plus many features were added since original inception
Although a lot of work has gone into this version of `FaceAPI` and it will continue to be maintained,
at this time it is completely superseded by my newer library `Human` which covers the same use cases,
but extends it with newer AI models, additional detection details, compatibility with latest web standard and more
- [Human NPM](https://www.npmjs.com/package/@vladmandic/human)
- [Human Git Repository](https://github.com/vladmandic/human)
2021-03-13 18:26:31 +01:00
<br>
2021-03-13 18:21:32 +01:00
## Differences
2021-03-14 14:34:20 +01:00
Compared to [face-api.js](https://github.com/justadudewhohacks/face-api.js) version **0.22.2**:
- Compatible with `TensorFlow/JS 2.0+ & 3.0+`
2021-03-13 18:21:32 +01:00
- Compatible with `WebGL`, `CPU` and `WASM` TFJS Browser backends
- Compatible with both `tfjs-node` and `tfjs-node-gpu` TFJS NodeJS backends
2021-03-14 14:34:20 +01:00
- Updated all type castings for TypeScript type checking to `TypeScript 4.2`
- Switched bundling from `UMD` to `ESM` + `CommonJS` with fallback to `IIFE`
Resulting code is optimized per-platform instead of being universal
Fully tree shakable when imported as an `ESM` module
Browser bundle process uses `ESBuild` instead of `Rollup`
2021-03-25 12:31:18 +01:00
- Typescript build process now targets `ES2018` and instead of dual `ES5`/`ES6`
2021-03-14 14:34:20 +01:00
Resulting code is clean ES2018 JavaScript without polyfills
- Removed old tests, docs, examples
- Removed old package dependencies (`karma`, `jasmine`, `babel`, etc.)
- Updated all package dependencies
- Updated TensorFlow/JS dependencies since backends were removed from `@tensorflow/tfjs-core`
2021-03-25 12:31:18 +01:00
- Updated `mobileNetv1` model due to `batchNorm()` dependency
2021-03-14 14:34:20 +01:00
- Added `version` class that returns JSON object with version of FaceAPI as well as linked TFJS
2021-03-13 18:21:32 +01:00
- Added test/dev built-in HTTP & HTTPS Web server
2021-04-05 15:36:26 +02:00
- Removed `mtcnn` and `tinyYolov2` models as they were non-functional in latest public version of `FaceAPI`
2021-03-14 14:34:20 +01:00
Which means valid models are **tinyFaceDetector** and **mobileNetv1**
*If there is a demand, I can re-implement them back.*
- Added `face angle` calculations that returns `roll`, `yaw` and `pitch`
- Added `typdoc` automatic API specification generation during build
- Added `changelog` automatic generation during build
2021-03-13 18:21:32 +01:00
2021-03-13 18:26:31 +01:00
<br>
2021-03-07 13:26:23 +01:00
## Credits
2021-04-05 15:36:26 +02:00
- Original project: [face-api.js](https://github.com/justadudewhohacks/face-api.js)
- Original model weighs: [face-api.js-models](https://github.com/justadudewhohacks/face-api.js-models)
- ML API Documentation: [Tensorflow/JS](https://js.tensorflow.org/api/latest/)
2021-03-08 20:26:04 +01:00
<br>
2021-03-15 13:37:40 +01:00
![Stars](https://img.shields.io/github/stars/vladmandic/face-api?style=flat-square?svg=true)
2021-04-09 01:17:06 +02:00
![Forks](https://badgen.net/github/forks/vladmandic/face-api)
2021-03-15 13:37:40 +01:00
![Code Size](https://img.shields.io/github/languages/code-size/vladmandic/face-api?style=flat-square?svg=true)
2021-04-09 01:17:06 +02:00
![CDN](https://data.jsdelivr.com/v1/package/npm/@vladmandic/face-api/badge)<br>
2021-04-03 17:02:49 +02:00
![Downloads](https://img.shields.io/npm/dw/@vladmandic/face-api.png?style=flat-square)
![Downloads](https://img.shields.io/npm/dm/@vladmandic/face-api.png?style=flat-square)
![Downloads](https://img.shields.io/npm/dy/@vladmandic/face-api.png?style=flat-square)