mirror of https://github.com/vladmandic/human
optimize for npm
parent
e447e14beb
commit
9cfd2c014c
13
README.md
13
README.md
|
@ -1,5 +1,11 @@
|
||||||
# Human Library
|
# Human Library
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
**3D Face Detection & Rotation Tracking, Face Embedding & Recognition,**
|
**3D Face Detection & Rotation Tracking, Face Embedding & Recognition,**
|
||||||
**Body Pose Tracking, Hand & Finger Tracking,**
|
**Body Pose Tracking, Hand & Finger Tracking,**
|
||||||
**Iris Analysis, Age & Gender & Emotion Prediction**
|
**Iris Analysis, Age & Gender & Emotion Prediction**
|
||||||
|
@ -23,7 +29,7 @@ Check out [**Live Demo**](https://vladmandic.github.io/human/demo/index.html) fo
|
||||||
- [**Code Repository**](https://github.com/vladmandic/human)
|
- [**Code Repository**](https://github.com/vladmandic/human)
|
||||||
- [**NPM Package**](https://www.npmjs.com/package/@vladmandic/human)
|
- [**NPM Package**](https://www.npmjs.com/package/@vladmandic/human)
|
||||||
- [**Issues Tracker**](https://github.com/vladmandic/human/issues)
|
- [**Issues Tracker**](https://github.com/vladmandic/human/issues)
|
||||||
- [**Change Log**](https://github.com/vladmandic/human/wiki/Change-Log)
|
- [**Change Log**](https://github.com/vladmandic/human/CHANGELOG.md)
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
@ -138,3 +144,8 @@ detectVideo();
|
||||||
```
|
```
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@vladmandic/human",
|
"name": "@vladmandic/human",
|
||||||
"version": "0.40.9",
|
"version": "1.0.0",
|
||||||
"description": "Human: AI-powered 3D Face Detection, Face Embedding & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition",
|
"description": "Human: AI-powered 3D Face Detection, Face Embedding & Recognition, Body Pose Tracking, Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction & Gesture Recognition",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"main": "dist/human.node.js",
|
"main": "dist/human.node.js",
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/vladmandic/human/issues"
|
"url": "https://github.com/vladmandic/human/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/vladmandic/human#readme",
|
"homepage": "https://vladmandic.github.io/human/demo/index.html",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=12.0.0"
|
"node": ">=12.0.0"
|
||||||
|
@ -54,6 +54,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation src/node.js",
|
"start": "node --trace-warnings --unhandled-rejections=strict --trace-uncaught --no-deprecation src/node.js",
|
||||||
"lint": "eslint src demo server",
|
"lint": "eslint src demo server",
|
||||||
|
"test": "eslint src demo server",
|
||||||
"dev": "npm install && node server/serve.js",
|
"dev": "npm install && node server/serve.js",
|
||||||
"build": "rimraf dist/* && rimraf types/* && node server/build.js && node server/changelog.js",
|
"build": "rimraf dist/* && rimraf types/* && node server/build.js && node server/changelog.js",
|
||||||
"update": "npm update --depth 20 --force && npm dedupe && npm prune && npm audit"
|
"update": "npm update --depth 20 --force && npm dedupe && npm prune && npm audit"
|
||||||
|
|
|
@ -52,7 +52,7 @@ exports.update = update;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (require.main === module) {
|
if (require.main === module) {
|
||||||
update('../wiki/Change-Log.md');
|
update('../CHANGELOG.md');
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
//
|
//
|
||||||
|
|
2
wiki
2
wiki
|
@ -1 +1 @@
|
||||||
Subproject commit f981107e84085bb5ac93441162e900a0d73d0503
|
Subproject commit 21110527662c146e4f1782c0af030d7bbaa316cd
|
Loading…
Reference in New Issue