update dependencies

pull/293/head
Vladimir Mandic 2021-05-18 08:22:33 -04:00
parent 12e7dc520f
commit 0b9baffbfd
5 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# @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**
Author: **Vladimir Mandic <mandic00@live.com>**
@ -9,11 +9,12 @@ Repository: **<git+https://github.com/vladmandic/human.git>**
## 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
- fix node build and update model signatures

View File

@ -18,4 +18,4 @@ N/A
## 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 log = require('@vladmandic/pilogger');
// eslint-disable-next-line node/no-missing-require
const Pipe2Jpeg = require('pipe2jpeg');
// 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

View File

@ -4,6 +4,7 @@
const util = require('util');
const log = require('@vladmandic/pilogger');
// eslint-disable-next-line node/no-missing-require
const nodeWebCam = require('node-webcam');
// 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

View File

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