face-api/README.md

250 lines
9.0 KiB
Markdown
Raw Normal View History

2020-08-18 13:54:53 +02:00
# FaceAPI
2020-08-27 14:58:00 +02:00
## Note
This is updated **face-api.js** with latest available TensorFlow/JS as the original face-api.js is not compatible with **tfjs 2.0+**.
2020-08-27 14:58:00 +02:00
2020-08-22 18:13:02 +02:00
Forked from **face-api.js** version **0.22.2** released on March 22nd, 2020
- <https://github.com/justadudewhohacks/face-api.js>
- <https://www.npmjs.com/package/face-api.js>
2020-08-18 13:54:53 +02:00
2020-10-29 05:16:50 +01:00
Currently based on **`TensorFlow/JS` 2.7.0**
2020-10-13 22:57:06 +02:00
2020-10-15 12:48:39 +02:00
### Why?
2020-12-02 23:24:40 +01:00
Because I needed Face-API that does not cause version conflict with newer TFJS 2.0 that I use accross my projects
And since original Face-API was open-source, I've released this version as well
Unfortunately, changes ended up being too large for a simple pull request on original Face-API and it ended up being a full-fledged version on its own
2020-10-15 12:48:39 +02:00
### Differences
- Compatible with `TensorFlow/JS 2.0+`
- Compatible with `WebGL`, `CPU` and `WASM` TFJS Browser backends
- Compatible with both `tfjs-node` and `tfjs-node-gpu` TFJS NodeJS backends
2020-10-15 12:48:39 +02:00
- Updated all type castings for TypeScript type checking to `TypeScript 4.1`
- Switched bundling from `UMD` to `ESM` + `CommonJS` with fallback to `IIFE`
2020-12-02 23:24:40 +01:00
Resulting code is optimized per-platform instead of being universal
2020-10-15 12:48:39 +02:00
Fully tree shakable when imported as an `ESM` module
Browser bundle process uses `ESBuild` instead of `Rollup`
- Typescript build process now targets `ES2018` and instead of dual ES5/ES6
Resulting code is clean ES2018 JavaScript without polyfills
2020-10-13 22:57:06 +02:00
- Removed old tests, docs, examples
2020-10-15 12:48:39 +02:00
- Removed old package dependencies (`karma`, `jasmine`, `babel`, etc.)
2020-10-13 22:57:06 +02:00
- Updated all package dependencies
2020-10-15 12:48:39 +02:00
- Updated TensorFlow/JS dependencies since backends were removed from `@tensorflow/tfjs-core`
- Updated mobileNetv1 model due to `batchNorm()` dependency
- Added `version` class that returns JSON object with version of FaceAPI as well as linked TFJS
- Removed `mtcnn` and `tinyYolov2` models as they were non-functional in latest public version of `Face-API`
*If there is a demand, I can re-implement them back.*
2020-08-18 13:54:53 +02:00
2020-08-26 00:24:48 +02:00
Which means valid models are **tinyFaceDetector** and **mobileNetv1**
2020-08-27 14:58:00 +02:00
## Installation
2020-08-26 00:24:48 +02:00
2020-10-15 12:48:39 +02:00
Face-API ships with several pre-build versions of the library:
2020-12-02 23:24:40 +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
2020-10-15 12:48:39 +02:00
Defaults are:
```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`
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+
All versions include `sourcemap` and `asset manifest`
<br>
2020-10-15 12:48:39 +02:00
2020-10-11 18:41:17 +02:00
There are several ways to use Face-API:
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
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>
```
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">
```
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
or to use non-bundled version:
```js
import * as tf from `https://cdnjs.cloudflare.com/ajax/libs/tensorflow/2.7.0/tf.es2017.min.js`; // load tfjs directly from CDN link or your local system
import * as faceapi from 'dist/face-api.esm-nobundle.js';
2020-10-15 12:48:39 +02:00
```
2020-10-11 18:50:50 +02:00
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:
```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';
```
or if your bundler doesn't recognize `recommended` type, force usage with:
```js
import * as faceapi from '@vladmandic/face-api/dist/face-api.esm.js';
```
or to use non-bundled version
```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
*Node: Face-API 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:
```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
```
And then use with:
```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:
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
Then install appropriate version of `Face-API`:
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
```
And then use with:
```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
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
## Build
2020-10-11 18:41:17 +02:00
If you want to do a full rebuild, either download npm module
```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
```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:
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
npm run build
> @vladmandic/face-api@0.8.9 build /home/vlado/dev/face-api
> rimraf dist/* && node ./build.js
```
```json
2020-12-02 16:31:23 INFO: @vladmandic/face-api version 0.8.9
2020-12-02 16:31:23 INFO: User: vlado Platform: linux Arch: x64 Node: v15.0.1
2020-12-02 16:31:23 INFO: Build: file startup all target: es2018
2020-12-02 16:31:23 STATE: Build for: node type: tfjs: { imports: 1, importBytes: 39, outputBytes: 1042, outputFiles: 'dist/tfjs.esm.js' }
2020-12-02 16:31:23 STATE: Build for: node type: node: { imports: 160, importBytes: 228038, outputBytes: 134190, outputFiles: 'dist/face-api.node.js' }
2020-12-02 16:31:23 STATE: Build for: nodeGPU type: tfjs: { imports: 1, importBytes: 43, outputBytes: 1046, outputFiles: 'dist/tfjs.esm.js' }
2020-12-02 16:31:23 STATE: Build for: nodeGPU type: node: { imports: 160, importBytes: 228042, outputBytes: 134198, outputFiles: 'dist/face-api.node-gpu.js' }
2020-12-02 16:31:23 STATE: Build for: browserNoBundle type: tfjs: { imports: 1, importBytes: 1784, outputBytes: 244, outputFiles: 'dist/tfjs.esm.js' }
2020-12-02 16:31:23 STATE: Build for: browserNoBundle type: esm: { imports: 160, importBytes: 227240, outputBytes: 131024, outputFiles: 'dist/face-api.esm-nobundle.js' }
2020-12-02 16:31:24 STATE: Build for: browserBundle type: tfjs: { modules: 1045, moduleBytes: 3718721, imports: 7, importBytes: 1784, outputBytes: 1501677, outputFiles: 'dist/tfjs.esm.js' }
2020-12-02 16:31:24 STATE: Build for: browserBundle type: iife: { imports: 162, importBytes: 1728673, modules: 576, moduleBytes: 1359851, outputBytes: 1903311, outputFiles: 'dist/face-api.js' }
2020-12-02 16:31:25 STATE: Build for: browserBundle type: esm: { imports: 162, importBytes: 1728673, modules: 576, moduleBytes: 1359851, outputBytes: 1900836, outputFiles: 'dist/face-api.esm.js' }
```
2020-08-18 13:54:53 +02:00
<br>
## Credits & Documentation
- Original project and usage documentation: [Face-API](https://github.com/justadudewhohacks/face-api.js)
- Original model weighs: [Face-API](https://github.com/justadudewhohacks/face-api.js-models)
- ML API Documentation: [Tensorflow/JS](https://js.tensorflow.org/api/latest/)
<br>
2020-08-27 14:58:00 +02:00
## Example
<br>
2020-11-03 19:52:17 +01:00
### Browser
Example that uses both models as well as all of the extensions is included in `/example/index.html`
Example can be accessed directly using Git pages using URL: <https://vladmandic.github.io/face-api/example/>
<br>
2020-11-03 19:52:17 +01:00
### NodeJS
Example is included in `/example/node.js`
Note that it does not require any other other 3rd party libraries
2020-08-27 14:58:00 +02:00
2020-09-09 15:29:24 +02:00
*Note: Photos shown below are taken by me*
2020-08-27 14:58:00 +02:00
![alt text](example/screenshot.png)