update dependencies

pull/280/head
Vladimir Mandic 2021-05-18 08:22:33 -04:00
parent 2cf87b8151
commit 53c070e3c5
5 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# @vladmandic/human # @vladmandic/human
Version: **1.8.4** Version: **1.8.5**
Description: **Human: AI-powered 3D Face Detection & Rotation Tracking, Face Description & Recognition, Body Pose Tracking, 3D Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction, Gesture Recognition** Description: **Human: AI-powered 3D Face Detection & Rotation Tracking, Face Description & Recognition, Body Pose Tracking, 3D Hand & Finger Tracking, Iris Analysis, Age & Gender & Emotion Prediction, Gesture Recognition**
Author: **Vladimir Mandic <mandic00@live.com>** Author: **Vladimir Mandic <mandic00@live.com>**
@ -9,11 +9,12 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
## Changelog ## Changelog
### **HEAD -> main** 2021/05/17 mandic00@live.com ### **1.8.5** 2021/05/18 mandic00@live.com
### **origin/main** 2021/05/16 mandic00@live.com ### **origin/main** 2021/05/17 mandic00@live.com
- add node-video sample
- add node-webcam demo - add node-webcam demo
- fix node build and update model signatures - fix node build and update model signatures

View File

@ -18,4 +18,4 @@ N/A
## In Progress ## In Progress
- Refactor BlazeFace to avoid data and array access and use buffers where needed N/A

View File

@ -9,6 +9,7 @@
const spawn = require('child_process').spawn; const spawn = require('child_process').spawn;
const log = require('@vladmandic/pilogger'); const log = require('@vladmandic/pilogger');
// eslint-disable-next-line node/no-missing-require
const Pipe2Jpeg = require('pipe2jpeg'); const Pipe2Jpeg = require('pipe2jpeg');
// for NodeJS, `tfjs-node` or `tfjs-node-gpu` should be loaded before using Human // for NodeJS, `tfjs-node` or `tfjs-node-gpu` should be loaded before using Human
// eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars

View File

@ -4,6 +4,7 @@
const util = require('util'); const util = require('util');
const log = require('@vladmandic/pilogger'); const log = require('@vladmandic/pilogger');
// eslint-disable-next-line node/no-missing-require
const nodeWebCam = require('node-webcam'); const nodeWebCam = require('node-webcam');
// for NodeJS, `tfjs-node` or `tfjs-node-gpu` should be loaded before using Human // for NodeJS, `tfjs-node` or `tfjs-node-gpu` should be loaded before using Human
// eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars // eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars

View File

@ -4,7 +4,7 @@ const test = require('./test-main.js').test;
const config = { const config = {
modelBasePath: 'http://localhost:10030/models/', modelBasePath: 'http://localhost:10030/models/',
backend: 'wasm', backend: 'wasm',
wasmPath: 'assets/', wasmPath: 'node_modules/@tensorflow/tfjs-backend-wasm/dist/',
debug: false, debug: false,
videoOptimized: false, videoOptimized: false,
async: false, async: false,