@vladmandic/human
Version:
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
21 lines (18 loc) • 652 B
text/typescript
import * as tf from 'dist/tfjs.esm.js';
import type { Tensor } from './types';
export const constants: Record<string, Tensor | number | number[]> = {
tf255: 255.0,
tf1: 1.0,
tf2: 2.0,
tf05: 0.5,
tf127: 127.5,
rgb: [0.2989, 0.5870, 0.1140],
};
export function init() {
constants.tf255 = tf.scalar(255.0, 'float32');
constants.tf1 = tf.scalar(1.0, 'float32');
constants.tf2 = tf.scalar(2.0, 'float32');
constants.tf05 = tf.scalar(0.5, 'float32');
constants.tf127 = tf.scalar(127.5, 'float32');
constants.rgb = tf.tensor1d([0.2989, 0.5870, 0.1140], 'float32'); // factors for red/green/blue colors when converting to grayscale
}