mirror of https://github.com/vladmandic/human
fixes plus tfjs upgrade for new release
parent
d1bcd25b3d
commit
ad54b34b07
|
@ -1,6 +1,6 @@
|
||||||
# @vladmandic/human
|
# @vladmandic/human
|
||||||
|
|
||||||
Version: **3.0.6**
|
Version: **3.0.7**
|
||||||
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 @@
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
### **HEAD -> main** 2023/05/08 mandic00@live.com
|
### **3.0.7** 2023/06/12 mandic00@live.com
|
||||||
|
|
||||||
|
|
||||||
### **origin/main** 2023/05/03 76097937+dalvine@users.noreply.github.com
|
### **origin/main** 2023/05/08 mandic00@live.com
|
||||||
|
|
||||||
|
- fix memory leak in histogramequalization
|
||||||
- initial work on tracker
|
- initial work on tracker
|
||||||
|
|
||||||
### **3.0.6** 2023/03/21 mandic00@live.com
|
### **3.0.6** 2023/03/21 mandic00@live.com
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
author: <https://github.com/vladmandic>'
|
author: <https://github.com/vladmandic>'
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import*as m from"../../dist/human.esm.js";var v=1920,b={debug:!0,backend:"webgl",modelBasePath:"../../models",filter:{enabled:!0,equalization:!1,flip:!1},face:{enabled:!0,detector:{rotation:!1},mesh:{enabled:!0},attention:{enabled:!1},iris:{enabled:!0},description:{enabled:!0},emotion:{enabled:!0},antispoof:{enabled:!0},liveness:{enabled:!0}},body:{enabled:!1},hand:{enabled:!1},object:{enabled:!1},segmentation:{enabled:!1},gesture:{enabled:!0}},e=new m.Human(b);e.env.perfadd=!1;e.draw.options.font='small-caps 18px "Lato"';e.draw.options.lineHeight=20;e.draw.options.drawPoints=!0;var a={video:document.getElementById("video"),canvas:document.getElementById("canvas"),log:document.getElementById("log"),fps:document.getElementById("status"),perf:document.getElementById("performance")},n={detect:0,draw:0,tensors:0,start:0},s={detectFPS:0,drawFPS:0,frames:0,averageMs:0},o=(...t)=>{a.log.innerText+=t.join(" ")+`
|
import*as m from"../../dist/human.esm.js";var v=1920,b={debug:!0,backend:"webgl",modelBasePath:"https://vladmandic.github.io/human-models/models/",filter:{enabled:!0,equalization:!1,flip:!1},face:{enabled:!0,detector:{rotation:!1},mesh:{enabled:!0},attention:{enabled:!1},iris:{enabled:!0},description:{enabled:!0},emotion:{enabled:!0},antispoof:{enabled:!0},liveness:{enabled:!0}},body:{enabled:!1},hand:{enabled:!1},object:{enabled:!1},segmentation:{enabled:!1},gesture:{enabled:!0}},e=new m.Human(b);e.env.perfadd=!1;e.draw.options.font='small-caps 18px "Lato"';e.draw.options.lineHeight=20;e.draw.options.drawPoints=!0;var a={video:document.getElementById("video"),canvas:document.getElementById("canvas"),log:document.getElementById("log"),fps:document.getElementById("status"),perf:document.getElementById("performance")},n={detect:0,draw:0,tensors:0,start:0},s={detectFPS:0,drawFPS:0,frames:0,averageMs:0},o=(...t)=>{a.log.innerText+=t.join(" ")+`
|
||||||
`,console.log(...t)},r=t=>a.fps.innerText=t,g=t=>a.perf.innerText="tensors:"+e.tf.memory().numTensors.toString()+" | performance: "+JSON.stringify(t).replace(/"|{|}/g,"").replace(/,/g," | ");async function f(){if(!a.video.paused){n.start===0&&(n.start=e.now()),await e.detect(a.video);let t=e.tf.memory().numTensors;t-n.tensors!==0&&o("allocated tensors:",t-n.tensors),n.tensors=t,s.detectFPS=Math.round(1e3*1e3/(e.now()-n.detect))/1e3,s.frames++,s.averageMs=Math.round(1e3*(e.now()-n.start)/s.frames)/1e3,s.frames%100===0&&!a.video.paused&&o("performance",{...s,tensors:n.tensors})}n.detect=e.now(),requestAnimationFrame(f)}async function w(){var d,i,c;if(!a.video.paused){let l=e.next(e.result),p=await e.image(a.video);e.draw.canvas(p.canvas,a.canvas);let u={bodyLabels:`person confidence [score] and ${(c=(i=(d=e.result)==null?void 0:d.body)==null?void 0:i[0])==null?void 0:c.keypoints.length} keypoints`};await e.draw.all(a.canvas,l,u),g(l.performance)}let t=e.now();s.drawFPS=Math.round(1e3*1e3/(t-n.draw))/1e3,n.draw=t,r(a.video.paused?"paused":`fps: ${s.detectFPS.toFixed(1).padStart(5," ")} detect | ${s.drawFPS.toFixed(1).padStart(5," ")} draw`),setTimeout(w,30)}async function y(){let d=(await e.webcam.enumerate())[0].deviceId;await e.webcam.start({element:a.video,crop:!1,width:v,id:d}),a.canvas.width=e.webcam.width,a.canvas.height=e.webcam.height,a.canvas.onclick=async()=>{e.webcam.paused?await e.webcam.play():e.webcam.pause()}}async function h(){o("human version:",e.version,"| tfjs version:",e.tf.version["tfjs-core"]),o("platform:",e.env.platform,"| agent:",e.env.agent),r("loading..."),await e.load(),o("backend:",e.tf.getBackend(),"| available:",e.env.backends),o("models stats:",e.models.stats()),o("models loaded:",e.models.loaded()),o("environment",e.env),r("initializing..."),await e.warmup(),await y(),await f(),await w()}window.onload=h;
|
`,console.log(...t)},i=t=>a.fps.innerText=t,g=t=>a.perf.innerText="tensors:"+e.tf.memory().numTensors.toString()+" | performance: "+JSON.stringify(t).replace(/"|{|}/g,"").replace(/,/g," | ");async function f(){if(!a.video.paused){n.start===0&&(n.start=e.now()),await e.detect(a.video);let t=e.tf.memory().numTensors;t-n.tensors!==0&&o("allocated tensors:",t-n.tensors),n.tensors=t,s.detectFPS=Math.round(1e3*1e3/(e.now()-n.detect))/1e3,s.frames++,s.averageMs=Math.round(1e3*(e.now()-n.start)/s.frames)/1e3,s.frames%100===0&&!a.video.paused&&o("performance",{...s,tensors:n.tensors})}n.detect=e.now(),requestAnimationFrame(f)}async function u(){var d,r,c;if(!a.video.paused){let l=e.next(e.result),w=await e.image(a.video);e.draw.canvas(w.canvas,a.canvas);let p={bodyLabels:`person confidence [score] and ${(c=(r=(d=e.result)==null?void 0:d.body)==null?void 0:r[0])==null?void 0:c.keypoints.length} keypoints`};await e.draw.all(a.canvas,l,p),g(l.performance)}let t=e.now();s.drawFPS=Math.round(1e3*1e3/(t-n.draw))/1e3,n.draw=t,i(a.video.paused?"paused":`fps: ${s.detectFPS.toFixed(1).padStart(5," ")} detect | ${s.drawFPS.toFixed(1).padStart(5," ")} draw`),setTimeout(u,30)}async function h(){let d=(await e.webcam.enumerate())[0].deviceId,r=await e.webcam.start({element:a.video,crop:!1,width:v,id:d});o(r),a.canvas.width=e.webcam.width,a.canvas.height=e.webcam.height,a.canvas.onclick=async()=>{e.webcam.paused?await e.webcam.play():e.webcam.pause()}}async function y(){o("human version:",e.version,"| tfjs version:",e.tf.version["tfjs-core"]),o("platform:",e.env.platform,"| agent:",e.env.agent),i("loading..."),await e.load(),o("backend:",e.tf.getBackend(),"| available:",e.env.backends),o("models stats:",e.models.stats()),o("models loaded:",e.models.loaded()),o("environment",e.env),i("initializing..."),await e.warmup(),await h(),await f(),await u()}window.onload=y;
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,8 @@ const humanConfig: Partial<H.Config> = { // user configuration for human, used t
|
||||||
// cacheSensitivity: 0,
|
// cacheSensitivity: 0,
|
||||||
// cacheModels: false,
|
// cacheModels: false,
|
||||||
// warmup: 'none',
|
// warmup: 'none',
|
||||||
modelBasePath: '../../models',
|
// modelBasePath: '../../models',
|
||||||
|
modelBasePath: 'https://vladmandic.github.io/human-models/models/',
|
||||||
filter: { enabled: true, equalization: false, flip: false },
|
filter: { enabled: true, equalization: false, flip: false },
|
||||||
face: { enabled: true, detector: { rotation: false }, mesh: { enabled: true }, attention: { enabled: false }, iris: { enabled: true }, description: { enabled: true }, emotion: { enabled: true }, antispoof: { enabled: true }, liveness: { enabled: true } },
|
face: { enabled: true, detector: { rotation: false }, mesh: { enabled: true }, attention: { enabled: false }, iris: { enabled: true }, description: { enabled: true }, emotion: { enabled: true }, antispoof: { enabled: true }, liveness: { enabled: true } },
|
||||||
body: { enabled: false },
|
body: { enabled: false },
|
||||||
|
@ -89,7 +90,8 @@ async function drawLoop() { // main screen refresh loop
|
||||||
async function webCam() {
|
async function webCam() {
|
||||||
const devices = await human.webcam.enumerate();
|
const devices = await human.webcam.enumerate();
|
||||||
const id = devices[0].deviceId; // use first available video source
|
const id = devices[0].deviceId; // use first available video source
|
||||||
await human.webcam.start({ element: dom.video, crop: false, width, id }); // use human webcam helper methods and associate webcam stream with a dom element
|
const webcamStatus = await human.webcam.start({ element: dom.video, crop: false, width, id }); // use human webcam helper methods and associate webcam stream with a dom element
|
||||||
|
log(webcamStatus);
|
||||||
dom.canvas.width = human.webcam.width;
|
dom.canvas.width = human.webcam.width;
|
||||||
dom.canvas.height = human.webcam.height;
|
dom.canvas.height = human.webcam.height;
|
||||||
dom.canvas.onclick = async () => { // pause when clicked on screen and resume on next click
|
dom.canvas.onclick = async () => { // pause when clicked on screen and resume on next click
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,4 +4,4 @@
|
||||||
author: <https://github.com/vladmandic>'
|
author: <https://github.com/vladmandic>'
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var e="4.5.0";var s="4.5.0";var t="4.5.0";var n="4.5.0";var r="4.5.0";var i="0.0.1-alpha.20";var h={tfjs:e,"tfjs-core":e,"tfjs-converter":s,"tfjs-backend-cpu":t,"tfjs-backend-webgl":n,"tfjs-backend-wasm":r,"tfjs-backend-webgpu":i};export{h as version};
|
var e="4.7.0";var s="4.7.0";var t="4.7.0";var n="4.7.0";var r="4.7.0";var i="4.7.0";var h={tfjs:e,"tfjs-core":e,"tfjs-converter":s,"tfjs-backend-cpu":t,"tfjs-backend-webgl":n,"tfjs-backend-wasm":r,"tfjs-backend-webgpu":i};export{h as version};
|
||||||
|
|
|
@ -7,7 +7,7 @@ export const getCanvasContext = (input: AnyCanvas) => {
|
||||||
if (!input) log('draw error: invalid canvas');
|
if (!input) log('draw error: invalid canvas');
|
||||||
else if (!input.getContext) log('draw error: canvas context not defined');
|
else if (!input.getContext) log('draw error: canvas context not defined');
|
||||||
else {
|
else {
|
||||||
const ctx = input.getContext('2d');
|
const ctx = input.getContext('2d', { willReadFrequently: true });
|
||||||
if (!ctx) log('draw error: cannot get canvas context');
|
if (!ctx) log('draw error: cannot get canvas context');
|
||||||
else return ctx;
|
else return ctx;
|
||||||
}
|
}
|
||||||
|
|
|
@ -98,6 +98,7 @@ export async function predict(input: Tensor4D, config: Config): Promise<FaceResu
|
||||||
if (config.face.mesh['keepInvalid']) {
|
if (config.face.mesh['keepInvalid']) {
|
||||||
face.box = util.clampBox(box, input);
|
face.box = util.clampBox(box, input);
|
||||||
face.boxRaw = util.getRawBox(box, input);
|
face.boxRaw = util.getRawBox(box, input);
|
||||||
|
face.size = box.size;
|
||||||
face.score = face.boxScore;
|
face.score = face.boxScore;
|
||||||
face.mesh = box.landmarks;
|
face.mesh = box.landmarks;
|
||||||
face.meshRaw = face.mesh.map((pt) => [pt[0] / (input.shape[2] || 1), pt[1] / (input.shape[1] || 1), (pt[2] || 0) / size]);
|
face.meshRaw = face.mesh.map((pt) => [pt[0] / (input.shape[2] || 1), pt[1] / (input.shape[1] || 1), (pt[2] || 0) / size]);
|
||||||
|
@ -127,6 +128,7 @@ export async function predict(input: Tensor4D, config: Config): Promise<FaceResu
|
||||||
};
|
};
|
||||||
face.box = util.clampBox(calculatedBox, input);
|
face.box = util.clampBox(calculatedBox, input);
|
||||||
face.boxRaw = util.getRawBox(calculatedBox, input);
|
face.boxRaw = util.getRawBox(calculatedBox, input);
|
||||||
|
face.size = calculatedBox.size;
|
||||||
/*
|
/*
|
||||||
const contoursT = results.find((t) => t.shape[t.shape.length - 1] === 266) as Tensor;
|
const contoursT = results.find((t) => t.shape[t.shape.length - 1] === 266) as Tensor;
|
||||||
const contoursData = contoursT && await contoursT.data(); // 133 x 2d points
|
const contoursData = contoursT && await contoursT.data(); // 133 x 2d points
|
||||||
|
|
|
@ -27,7 +27,13 @@ let handDetectorModel: GraphModel | null;
|
||||||
let handPoseModel: GraphModel | null;
|
let handPoseModel: GraphModel | null;
|
||||||
let handPipeline: handpipeline.HandPipeline;
|
let handPipeline: handpipeline.HandPipeline;
|
||||||
|
|
||||||
|
export function initPipeline() {
|
||||||
|
const handDetector = handDetectorModel ? new handdetector.HandDetector(handDetectorModel) : undefined;
|
||||||
|
if (handDetector && handPoseModel) handPipeline = new handpipeline.HandPipeline(handDetector, handPoseModel);
|
||||||
|
}
|
||||||
|
|
||||||
export async function predict(input: Tensor, config: Config): Promise<HandResult[]> {
|
export async function predict(input: Tensor, config: Config): Promise<HandResult[]> {
|
||||||
|
if (!handPipeline) initPipeline();
|
||||||
const predictions = await handPipeline.estimateHands(input, config);
|
const predictions = await handPipeline.estimateHands(input, config);
|
||||||
if (!predictions) return [];
|
if (!predictions) return [];
|
||||||
const hands: HandResult[] = [];
|
const hands: HandResult[] = [];
|
||||||
|
@ -82,21 +88,16 @@ export async function predict(input: Tensor, config: Config): Promise<HandResult
|
||||||
return hands;
|
return hands;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function load(config: Config): Promise<[GraphModel | null, GraphModel | null]> {
|
export async function loadDetect(config: Config): Promise<GraphModel> {
|
||||||
if (env.initial) {
|
if (env.initial) handDetectorModel = null;
|
||||||
handDetectorModel = null;
|
if (!handDetectorModel) handDetectorModel = await loadModel(config.hand.detector?.modelPath);
|
||||||
handPoseModel = null;
|
else if (config.debug) log('cached model:', handDetectorModel['modelUrl']);
|
||||||
}
|
return handDetectorModel;
|
||||||
if (!handDetectorModel || !handPoseModel) {
|
}
|
||||||
[handDetectorModel, handPoseModel] = await Promise.all([
|
|
||||||
config.hand.enabled ? loadModel(config.hand.detector?.modelPath) : null,
|
export async function loadSkeleton(config: Config): Promise<GraphModel> {
|
||||||
config.hand.landmarks ? loadModel(config.hand.skeleton?.modelPath) : null,
|
if (env.initial) handPoseModel = null;
|
||||||
]);
|
if (!handPoseModel) handPoseModel = await loadModel(config.hand.skeleton?.modelPath);
|
||||||
} else {
|
else if (config.debug) log('cached model:', handPoseModel['modelUrl']);
|
||||||
if (config.debug) log('cached model:', handDetectorModel['modelUrl']);
|
return handPoseModel;
|
||||||
if (config.debug) log('cached model:', handPoseModel['modelUrl']);
|
|
||||||
}
|
|
||||||
const handDetector = handDetectorModel ? new handdetector.HandDetector(handDetectorModel) : undefined;
|
|
||||||
if (handDetector && handPoseModel) handPipeline = new handpipeline.HandPipeline(handDetector, handPoseModel);
|
|
||||||
return [handDetectorModel, handPoseModel];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,10 +94,11 @@ export class HandPipeline {
|
||||||
const skipTime = (config.hand.skipTime || 0) > (now() - lastTime);
|
const skipTime = (config.hand.skipTime || 0) > (now() - lastTime);
|
||||||
const skipFrame = this.skipped < (config.hand.skipFrames || 0);
|
const skipFrame = this.skipped < (config.hand.skipFrames || 0);
|
||||||
if (config.skipAllowed && skipTime && skipFrame) {
|
if (config.skipAllowed && skipTime && skipFrame) {
|
||||||
|
this.skipped++;
|
||||||
|
} else {
|
||||||
boxes = await this.handDetector.predict(image, config);
|
boxes = await this.handDetector.predict(image, config);
|
||||||
this.skipped = 0;
|
this.skipped = 0;
|
||||||
}
|
}
|
||||||
if (config.skipAllowed) this.skipped++;
|
|
||||||
|
|
||||||
// if detector result count doesn't match current working set, use it to reset current working set
|
// if detector result count doesn't match current working set, use it to reset current working set
|
||||||
if (boxes && (boxes.length > 0) && ((boxes.length !== this.detectedHands) && (this.detectedHands !== config.hand.maxDetected) || !config.hand.landmarks)) {
|
if (boxes && (boxes.length > 0) && ((boxes.length !== this.detectedHands) && (this.detectedHands !== config.hand.maxDetected) || !config.hand.landmarks)) {
|
||||||
|
|
|
@ -147,7 +147,11 @@ export class Models {
|
||||||
// hand alternatives
|
// hand alternatives
|
||||||
m.handtrack = (this.instance.config.hand.enabled && !this.models.handtrack && this.instance.config.hand.detector?.modelPath?.includes('handtrack')) ? handtrack.loadDetect(this.instance.config) : null;
|
m.handtrack = (this.instance.config.hand.enabled && !this.models.handtrack && this.instance.config.hand.detector?.modelPath?.includes('handtrack')) ? handtrack.loadDetect(this.instance.config) : null;
|
||||||
m.handskeleton = (this.instance.config.hand.enabled && this.instance.config.hand.landmarks && !this.models.handskeleton && this.instance.config.hand.detector?.modelPath?.includes('handtrack')) ? handtrack.loadSkeleton(this.instance.config) : null;
|
m.handskeleton = (this.instance.config.hand.enabled && this.instance.config.hand.landmarks && !this.models.handskeleton && this.instance.config.hand.detector?.modelPath?.includes('handtrack')) ? handtrack.loadSkeleton(this.instance.config) : null;
|
||||||
if (this.instance.config.hand.detector?.modelPath?.includes('handdetect')) [m.handpose, m.handskeleton] = (!this.models.handpose) ? await handpose.load(this.instance.config) : [null, null];
|
// if (this.instance.config.hand.detector?.modelPath?.includes('handdetect')) [m.handpose, m.handskeleton] = (!this.models.handpose) ? await handpose.load(this.instance.config) : [null, null];
|
||||||
|
if (this.instance.config.hand.enabled && !this.models.handdetect && this.instance.config.hand.detector?.modelPath?.includes('handdetect')) {
|
||||||
|
m.handdetect = handpose.loadDetect(this.instance.config);
|
||||||
|
m.handskeleton = handpose.loadSkeleton(this.instance.config);
|
||||||
|
}
|
||||||
// object detection alternatives
|
// object detection alternatives
|
||||||
m.centernet = (this.instance.config.object.enabled && !this.models.centernet && this.instance.config.object.modelPath?.includes('centernet')) ? centernet.load(this.instance.config) : null;
|
m.centernet = (this.instance.config.object.enabled && !this.models.centernet && this.instance.config.object.modelPath?.includes('centernet')) ? centernet.load(this.instance.config) : null;
|
||||||
m.nanodet = (this.instance.config.object.enabled && !this.models.nanodet && this.instance.config.object.modelPath?.includes('nanodet')) ? nanodet.load(this.instance.config) : null;
|
m.nanodet = (this.instance.config.object.enabled && !this.models.nanodet && this.instance.config.object.modelPath?.includes('nanodet')) ? nanodet.load(this.instance.config) : null;
|
||||||
|
|
|
@ -103,7 +103,7 @@ export class WebCam { // eslint-disable-line @typescript-eslint/no-extraneous-cl
|
||||||
};
|
};
|
||||||
|
|
||||||
/** start method initializizes webcam stream and associates it with a dom video element */
|
/** start method initializizes webcam stream and associates it with a dom video element */
|
||||||
public start = async (webcamConfig?: Partial<WebCamConfig>): Promise<void> => {
|
public start = async (webcamConfig?: Partial<WebCamConfig>): Promise<string> => {
|
||||||
// set config
|
// set config
|
||||||
if (webcamConfig?.debug) this.config.debug = webcamConfig?.debug;
|
if (webcamConfig?.debug) this.config.debug = webcamConfig?.debug;
|
||||||
if (webcamConfig?.crop) this.config.crop = webcamConfig?.crop;
|
if (webcamConfig?.crop) this.config.crop = webcamConfig?.crop;
|
||||||
|
@ -120,13 +120,13 @@ export class WebCam { // eslint-disable-line @typescript-eslint/no-extraneous-cl
|
||||||
this.element = el;
|
this.element = el;
|
||||||
} else {
|
} else {
|
||||||
if (this.config.debug) log('webcam', 'cannot get dom element', webcamConfig.element);
|
if (this.config.debug) log('webcam', 'cannot get dom element', webcamConfig.element);
|
||||||
return;
|
return `webcam error: cannot get dom element: ${webcamConfig.element}`;
|
||||||
}
|
}
|
||||||
} else if (webcamConfig.element instanceof HTMLVideoElement) {
|
} else if (webcamConfig.element instanceof HTMLVideoElement) {
|
||||||
this.element = webcamConfig.element;
|
this.element = webcamConfig.element;
|
||||||
} else {
|
} else {
|
||||||
if (this.config.debug) log('webcam', 'unknown dom element', webcamConfig.element);
|
if (this.config.debug) log('webcam', 'unknown dom element', webcamConfig.element);
|
||||||
return;
|
return `webcam error: unknown dom element: ${webcamConfig.element}`;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.element = document.createElement('video');
|
this.element = document.createElement('video');
|
||||||
|
@ -156,18 +156,18 @@ export class WebCam { // eslint-disable-line @typescript-eslint/no-extraneous-cl
|
||||||
|
|
||||||
// get webcam and set it to run in dom element
|
// get webcam and set it to run in dom element
|
||||||
if (!navigator?.mediaDevices) {
|
if (!navigator?.mediaDevices) {
|
||||||
if (this.config.debug) log('webcam', 'no devices');
|
if (this.config.debug) log('webcam error', 'no devices');
|
||||||
return;
|
return 'webcam error: no devices';
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
this.stream = await navigator.mediaDevices.getUserMedia(requestedConstraints); // get stream that satisfies constraints
|
this.stream = await navigator.mediaDevices.getUserMedia(requestedConstraints); // get stream that satisfies constraints
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
log('webcam', err);
|
log('webcam', err);
|
||||||
return;
|
return `webcam error: ${err}`;
|
||||||
}
|
}
|
||||||
if (!this.stream) {
|
if (!this.stream) {
|
||||||
if (this.config.debug) log('webcam', 'no stream');
|
if (this.config.debug) log('webcam error', 'no stream');
|
||||||
return;
|
return 'webcam error no stream';
|
||||||
}
|
}
|
||||||
this.element.srcObject = this.stream; // assign it to dom element
|
this.element.srcObject = this.stream; // assign it to dom element
|
||||||
const ready = new Promise((resolve) => { // wait until stream is ready
|
const ready = new Promise((resolve) => { // wait until stream is ready
|
||||||
|
@ -189,6 +189,7 @@ export class WebCam { // eslint-disable-line @typescript-eslint/no-extraneous-cl
|
||||||
capabilities: this.capabilities,
|
capabilities: this.capabilities,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
return `webcam: ${this.label}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** pause webcam video method */
|
/** pause webcam video method */
|
||||||
|
|
102
test/build.log
102
test/build.log
|
@ -1,51 +1,51 @@
|
||||||
2023-05-08 09:13:55 [32mDATA: [39m Build {"name":"@vladmandic/human","version":"3.0.6"}
|
2023-06-12 13:27:02 [32mDATA: [39m Build {"name":"@vladmandic/human","version":"3.0.7"}
|
||||||
2023-05-08 09:13:55 [36mINFO: [39m Application: {"name":"@vladmandic/human","version":"3.0.6"}
|
2023-06-12 13:27:02 [36mINFO: [39m Application: {"name":"@vladmandic/human","version":"3.0.7"}
|
||||||
2023-05-08 09:13:55 [36mINFO: [39m Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true}
|
2023-06-12 13:27:02 [36mINFO: [39m Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true}
|
||||||
2023-05-08 09:13:55 [36mINFO: [39m Toolchain: {"build":"0.9.2","esbuild":"0.17.18","typescript":"5.0.4","typedoc":"0.23.28","eslint":"8.40.0"}
|
2023-06-12 13:27:02 [36mINFO: [39m Toolchain: {"build":"0.9.2","esbuild":"0.17.19","typescript":"5.1.3","typedoc":"0.23.28","eslint":"8.42.0"}
|
||||||
2023-05-08 09:13:55 [36mINFO: [39m Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
|
2023-06-12 13:27:02 [36mINFO: [39m Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Clean: {"locations":["dist/*","types/*","typedoc/*"]}
|
2023-06-12 13:27:02 [35mSTATE:[39m Clean: {"locations":["dist/*","types/*","typedoc/*"]}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1289,"outputBytes":361}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1289,"outputBytes":352}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":569,"outputBytes":960}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":560,"outputBytes":951}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":80,"inputBytes":675233,"outputBytes":320463}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":80,"inputBytes":675883,"outputBytes":320756}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":577,"outputBytes":968}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":568,"outputBytes":959}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":80,"inputBytes":675241,"outputBytes":320467}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":80,"inputBytes":675891,"outputBytes":320760}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":665,"outputBytes":2006}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":656,"outputBytes":1997}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":80,"inputBytes":676279,"outputBytes":320578}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":80,"inputBytes":676929,"outputBytes":320871}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1375,"outputBytes":670}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1366,"outputBytes":661}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":80,"inputBytes":674943,"outputBytes":319027}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":80,"inputBytes":675593,"outputBytes":319319}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":10,"inputBytes":1375,"outputBytes":1250365}
|
2023-06-12 13:27:02 [35mSTATE:[39m Compile: {"name":"tfjs/browser/esm/bundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":10,"inputBytes":1366,"outputBytes":1259192}
|
||||||
2023-05-08 09:13:55 [35mSTATE:[39m Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":80,"inputBytes":1924638,"outputBytes":1565102}
|
2023-06-12 13:27:03 [35mSTATE:[39m Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":80,"inputBytes":1934124,"outputBytes":1574208}
|
||||||
2023-05-08 09:13:56 [35mSTATE:[39m Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":80,"inputBytes":1924638,"outputBytes":2047423}
|
2023-06-12 13:27:03 [35mSTATE:[39m Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":80,"inputBytes":1934124,"outputBytes":2050464}
|
||||||
2023-05-08 09:13:59 [35mSTATE:[39m Typings: {"input":"src/human.ts","output":"types/lib","files":15}
|
2023-06-12 13:27:06 [35mSTATE:[39m Typings: {"input":"src/human.ts","output":"types/lib","files":15}
|
||||||
2023-05-08 09:14:01 [35mSTATE:[39m TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":81,"generated":true}
|
2023-06-12 13:27:08 [35mSTATE:[39m TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":81,"generated":true}
|
||||||
2023-05-08 09:14:01 [35mSTATE:[39m Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":6203,"outputBytes":2926}
|
2023-06-12 13:27:08 [35mSTATE:[39m Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":6318,"outputBytes":2970}
|
||||||
2023-05-08 09:14:01 [35mSTATE:[39m Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":17503,"outputBytes":9403}
|
2023-06-12 13:27:08 [35mSTATE:[39m Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":17503,"outputBytes":9403}
|
||||||
2023-05-08 09:14:01 [35mSTATE:[39m Compile: {"name":"demo/tracker","format":"esm","platform":"browser","input":"demo/tracker/index.ts","output":"demo/tracker/index.js","files":2,"inputBytes":54375,"outputBytes":22791}
|
2023-06-12 13:27:08 [35mSTATE:[39m Compile: {"name":"demo/tracker","format":"esm","platform":"browser","input":"demo/tracker/index.ts","output":"demo/tracker/index.js","files":2,"inputBytes":54375,"outputBytes":22791}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Lint: {"locations":["**/*.json","src/**/*.ts","test/**/*.js","demo/**/*.js","**/*.md"],"files":171,"errors":0,"warnings":0}
|
2023-06-12 13:27:17 [35mSTATE:[39m Lint: {"locations":["**/*.json","src/**/*.ts","test/**/*.js","demo/**/*.js","**/*.md"],"files":171,"errors":0,"warnings":0}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
|
2023-06-12 13:27:17 [35mSTATE:[39m ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Copy: {"input":"node_modules/@vladmandic/tfjs/types/tfjs-core.d.ts","output":"types/tfjs-core.d.ts"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Copy: {"input":"node_modules/@vladmandic/tfjs/types/tfjs-core.d.ts","output":"types/tfjs-core.d.ts"}
|
||||||
2023-05-08 09:14:09 [36mINFO: [39m Done...
|
2023-06-12 13:27:17 [36mINFO: [39m Done...
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Copy: {"input":"node_modules/@vladmandic/tfjs/types/tfjs.d.ts","output":"types/tfjs.esm.d.ts"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Copy: {"input":"node_modules/@vladmandic/tfjs/types/tfjs.d.ts","output":"types/tfjs.esm.d.ts"}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Copy: {"input":"src/types/tsconfig.json","output":"types/tsconfig.json"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Copy: {"input":"src/types/tsconfig.json","output":"types/tsconfig.json"}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Copy: {"input":"src/types/eslint.json","output":"types/.eslintrc.json"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Copy: {"input":"src/types/eslint.json","output":"types/.eslintrc.json"}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Copy: {"input":"src/types/tfjs.esm.d.ts","output":"dist/tfjs.esm.d.ts"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Copy: {"input":"src/types/tfjs.esm.d.ts","output":"dist/tfjs.esm.d.ts"}
|
||||||
2023-05-08 09:14:09 [35mSTATE:[39m Filter: {"input":"types/tfjs-core.d.ts"}
|
2023-06-12 13:27:17 [35mSTATE:[39m Filter: {"input":"types/tfjs-core.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m API-Extractor: {"succeeeded":true,"errors":0,"warnings":210}
|
2023-06-12 13:27:18 [35mSTATE:[39m API-Extractor: {"succeeeded":true,"errors":0,"warnings":211}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Filter: {"input":"types/human.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Filter: {"input":"types/human.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.esm-nobundle.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.esm-nobundle.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.esm.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.esm.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.node-gpu.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.node-gpu.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.node.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.node.d.ts"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Write: {"output":"dist/human.node-wasm.d.ts"}
|
2023-06-12 13:27:18 [35mSTATE:[39m Write: {"output":"dist/human.node-wasm.d.ts"}
|
||||||
2023-05-08 09:14:10 [36mINFO: [39m Analyze models: {"folders":8,"result":"models/models.json"}
|
2023-06-12 13:27:18 [36mINFO: [39m Analyze models: {"folders":8,"result":"models/models.json"}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"./models","models":12}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"./models","models":12}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../human-models/models","models":44}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../human-models/models","models":44}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../blazepose/model/","models":4}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../blazepose/model/","models":4}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../anti-spoofing/model","models":1}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../anti-spoofing/model","models":1}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../efficientpose/models","models":3}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../efficientpose/models","models":3}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../insightface/models","models":5}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../insightface/models","models":5}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../movenet/models","models":3}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../movenet/models","models":3}
|
||||||
2023-05-08 09:14:10 [35mSTATE:[39m Models {"folder":"../nanodet/models","models":4}
|
2023-06-12 13:27:18 [35mSTATE:[39m Models {"folder":"../nanodet/models","models":4}
|
||||||
2023-05-08 09:14:11 [35mSTATE:[39m Models: {"count":58,"totalSize":380063249}
|
2023-06-12 13:27:19 [35mSTATE:[39m Models: {"count":58,"totalSize":380063249}
|
||||||
2023-05-08 09:14:11 [36mINFO: [39m Human Build complete... {"logFile":"test/build.log"}
|
2023-06-12 13:27:19 [36mINFO: [39m Human Build complete... {"logFile":"test/build.log"}
|
||||||
|
|
1810
test/test.log
1810
test/test.log
File diff suppressed because it is too large
Load Diff
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Env | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Env | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Env.html">Env</a></li></ul>
|
<li><a href="Env.html">Env</a></li></ul>
|
||||||
<h1>Class Env</h1></div>
|
<h1>Class Env</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -343,7 +343,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GraphModel | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GraphModel | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="GraphModel.html">GraphModel</a></li></ul>
|
<li><a href="GraphModel.html">GraphModel</a></li></ul>
|
||||||
<h1>Class GraphModel<ModelURL></h1></div>
|
<h1>Class GraphModel<ModelURL></h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -37,7 +37,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<ul class="tsd-hierarchy">
|
<ul class="tsd-hierarchy">
|
||||||
<li><span class="tsd-signature-type">InferenceModel</span></li></ul></section><aside class="tsd-sources">
|
<li><span class="tsd-signature-type">InferenceModel</span></li></ul></section><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:34</li></ul></aside>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:34</li></ul></aside>
|
||||||
<section class="tsd-panel-group tsd-index-group">
|
<section class="tsd-panel-group tsd-index-group">
|
||||||
<section class="tsd-panel tsd-index-panel">
|
<section class="tsd-panel tsd-index-panel">
|
||||||
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
||||||
|
@ -97,7 +97,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h5><code class="tsd-tag ts-flagOptional">Optional</code> tfio: <span class="tsd-signature-type">__module</span></h5></li></ul></div>
|
<h5><code class="tsd-tag ts-flagOptional">Optional</code> tfio: <span class="tsd-signature-type">__module</span></h5></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <a href="GraphModel.html" class="tsd-signature-type" data-tsd-kind="Class">GraphModel</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">ModelURL</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <a href="GraphModel.html" class="tsd-signature-type" data-tsd-kind="Class">GraphModel</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">ModelURL</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:66</li></ul></aside></li></ul></section></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:66</li></ul></aside></li></ul></section></section>
|
||||||
<section class="tsd-panel-group tsd-member-group">
|
<section class="tsd-panel-group tsd-member-group">
|
||||||
<h2>Accessors</h2>
|
<h2>Accessors</h2>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="inputNodes" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="inputNodes" class="tsd-anchor"></a>
|
||||||
|
@ -107,7 +107,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:49</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:49</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="inputs" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="inputs" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>inputs</span><a href="#inputs" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>inputs</span><a href="#inputs" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -116,7 +116,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TensorInfo</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TensorInfo</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<p>Implementation of InferenceModel.inputs</p>
|
<p>Implementation of InferenceModel.inputs</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:51</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:51</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="metadata" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="metadata" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>metadata</span><a href="#metadata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>metadata</span><a href="#metadata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -125,7 +125,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
||||||
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:54</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:54</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelSignature" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelSignature" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>model<wbr/>Signature</span><a href="#modelSignature" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>model<wbr/>Signature</span><a href="#modelSignature" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -134,7 +134,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
||||||
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:55</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:55</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelStructuredOutputKeys" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelStructuredOutputKeys" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>model<wbr/>Structured<wbr/>Output<wbr/>Keys</span><a href="#modelStructuredOutputKeys" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>model<wbr/>Structured<wbr/>Output<wbr/>Keys</span><a href="#modelStructuredOutputKeys" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -143,7 +143,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{}</span></h4>
|
||||||
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
<ul class="tsd-parameters"></ul><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:56</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:56</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelVersion" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="modelVersion" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>model<wbr/>Version</span><a href="#modelVersion" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>model<wbr/>Version</span><a href="#modelVersion" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -151,7 +151,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:48</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:48</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="outputNodes" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="outputNodes" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>output<wbr/>Nodes</span><a href="#outputNodes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>output<wbr/>Nodes</span><a href="#outputNodes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -159,7 +159,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:50</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:50</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="outputs" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="outputs" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>outputs</span><a href="#outputs" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>outputs</span><a href="#outputs" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -168,7 +168,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TensorInfo</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TensorInfo</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<p>Implementation of InferenceModel.outputs</p>
|
<p>Implementation of InferenceModel.outputs</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:52</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:52</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="weights" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class"><a id="weights" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>weights</span><a href="#weights" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>weights</span><a href="#weights" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
||||||
|
@ -176,7 +176,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NamedTensorsMap</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NamedTensorsMap</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:53</li></ul></aside></li></ul></section></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:53</li></ul></aside></li></ul></section></section>
|
||||||
<section class="tsd-panel-group tsd-member-group">
|
<section class="tsd-panel-group tsd-member-group">
|
||||||
<h2>Methods</h2>
|
<h2>Methods</h2>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="dispose" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="dispose" class="tsd-anchor"></a>
|
||||||
|
@ -189,7 +189,7 @@ the command line converter tool and loaded via <code>tf.loadGraphModel</code>.</
|
||||||
<h3>Doc</h3></div>
|
<h3>Doc</h3></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:266</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:266</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="disposeIntermediateTensors" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="disposeIntermediateTensors" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>dispose<wbr/>Intermediate<wbr/>Tensors</span><a href="#disposeIntermediateTensors" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>dispose<wbr/>Intermediate<wbr/>Tensors</span><a href="#disposeIntermediateTensors" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -201,7 +201,7 @@ KEEP_INTERMEDIATE_TENSORS is true).</p>
|
||||||
<h3>Doc</h3></div>
|
<h3>Doc</h3></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:259</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:259</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="execute" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="execute" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>execute</span><a href="#execute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>execute</span><a href="#execute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -233,7 +233,7 @@ outputs array.</p>
|
||||||
<h4 class="tsd-returns-title">Returns <a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<p>Implementation of InferenceModel.execute</p>
|
<p>Implementation of InferenceModel.execute</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:228</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:228</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="executeAsync" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="executeAsync" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>execute<wbr/>Async</span><a href="#executeAsync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>execute<wbr/>Async</span><a href="#executeAsync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -264,7 +264,7 @@ array.</p>
|
||||||
</div></li></ul></div>
|
</div></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:245</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:245</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="getIntermediateTensors" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="getIntermediateTensors" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>get<wbr/>Intermediate<wbr/>Tensors</span><a href="#getIntermediateTensors" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>get<wbr/>Intermediate<wbr/>Tensors</span><a href="#getIntermediateTensors" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -276,7 +276,7 @@ KEEP_INTERMEDIATE_TENSORS is true).</p>
|
||||||
<h3>Doc</h3></div>
|
<h3>Doc</h3></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NamedTensorsMap</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">NamedTensorsMap</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:252</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:252</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="load" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="load" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>load</span><a href="#load" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>load</span><a href="#load" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -287,7 +287,7 @@ compile the inference graph.</p>
|
||||||
</div>
|
</div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">UrlIOHandler</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">ModelURL</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-type">IOHandlerSync</span><span class="tsd-signature-symbol"> ? </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> : </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">UrlIOHandler</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">ModelURL</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-type">IOHandlerSync</span><span class="tsd-signature-symbol"> ? </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> : </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:72</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:72</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="loadSync" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="loadSync" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>load<wbr/>Sync</span><a href="#loadSync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>load<wbr/>Sync</span><a href="#loadSync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -304,7 +304,7 @@ compile the inference graph.</p>
|
||||||
<h5>artifacts: <span class="tsd-signature-type">ModelArtifacts</span></h5></li></ul></div>
|
<h5>artifacts: <span class="tsd-signature-type">ModelArtifacts</span></h5></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:79</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:79</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="predict" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="predict" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>predict</span><a href="#predict" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>predict</span><a href="#predict" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -346,7 +346,7 @@ Currently the batch size option is ignored for graph model.</p>
|
||||||
<h4 class="tsd-returns-title">Returns <a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">NamedTensorMap</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">NamedTensorMap</span></h4><aside class="tsd-sources">
|
||||||
<p>Implementation of InferenceModel.predict</p>
|
<p>Implementation of InferenceModel.predict</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:165</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:165</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="predictAsync" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="predictAsync" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>predict<wbr/>Async</span><a href="#predictAsync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>predict<wbr/>Async</span><a href="#predictAsync" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -388,7 +388,7 @@ Currently the batch size option is ignored for graph model.</p>
|
||||||
</div></li></ul></div>
|
</div></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">NamedTensorMap</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><a href="Tensor-1.html" class="tsd-signature-type" data-tsd-kind="Class">Tensor</a><span class="tsd-signature-symbol"><</span><a href="../enums/Rank.html" class="tsd-signature-type" data-tsd-kind="Enumeration">Rank</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">NamedTensorMap</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:206</li></ul></aside></li></ul></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:206</li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="save" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="save" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>save</span><a href="#save" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>save</span><a href="#save" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -432,7 +432,7 @@ scheme-based string shortcut for <code>IOHandler</code>.</p>
|
||||||
</div></li></ul></div>
|
</div></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">SaveResult</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">SaveResult</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.5.0_@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:124</li></ul></aside></li></ul></section></section></div>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-converter@4.7.0_@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-converter/dist/executor/graph_model.d.ts:124</li></ul></aside></li></ul></section></section></div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<div class="tsd-navigation settings">
|
<div class="tsd-navigation settings">
|
||||||
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
||||||
|
@ -449,7 +449,7 @@ scheme-based string shortcut for <code>IOHandler</code>.</p>
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Human | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Human | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Human.html">Human</a></li></ul>
|
<li><a href="Human.html">Human</a></li></ul>
|
||||||
<h1>Class Human</h1></div>
|
<h1>Class Human</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -558,7 +558,7 @@ Returns tensor which contains image data in RGBA format</p>
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>WebCam | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>WebCam | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="WebCam.html">WebCam</a></li></ul>
|
<li><a href="WebCam.html">WebCam</a></li></ul>
|
||||||
<h1>Class WebCam</h1></div>
|
<h1>Class WebCam</h1></div>
|
||||||
<section class="tsd-panel tsd-hierarchy">
|
<section class="tsd-panel tsd-hierarchy">
|
||||||
|
@ -197,7 +197,7 @@
|
||||||
</div>
|
</div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L195">src/util/webcam.ts:195</a></li></ul></aside></li></ul></section>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L196">src/util/webcam.ts:196</a></li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="play" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="play" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>play</span><a href="#play" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>play</span><a href="#play" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -207,11 +207,11 @@
|
||||||
</div>
|
</div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L200">src/util/webcam.ts:200</a></li></ul></aside></li></ul></section>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L201">src/util/webcam.ts:201</a></li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="start" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="start" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>start</span><a href="#start" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>start</span><a href="#start" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
<li class="tsd-signature tsd-anchor-link" id="start.start-1">start<span class="tsd-signature-symbol">(</span>webcamConfig<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/WebCamConfig.html" class="tsd-signature-type" data-tsd-kind="Interface">WebCamConfig</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span><a href="#start.start-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
|
<li class="tsd-signature tsd-anchor-link" id="start.start-1">start<span class="tsd-signature-symbol">(</span>webcamConfig<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/WebCamConfig.html" class="tsd-signature-type" data-tsd-kind="Interface">WebCamConfig</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span><a href="#start.start-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<div class="tsd-comment tsd-typography"><p>start method initializizes webcam stream and associates it with a dom video element</p>
|
<div class="tsd-comment tsd-typography"><p>start method initializizes webcam stream and associates it with a dom video element</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
<ul class="tsd-parameter-list">
|
<ul class="tsd-parameter-list">
|
||||||
<li>
|
<li>
|
||||||
<h5><code class="tsd-tag ts-flagOptional">Optional</code> webcamConfig: <span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/WebCamConfig.html" class="tsd-signature-type" data-tsd-kind="Interface">WebCamConfig</a><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
<h5><code class="tsd-tag ts-flagOptional">Optional</code> webcamConfig: <span class="tsd-signature-type">Partial</span><span class="tsd-signature-symbol"><</span><a href="../interfaces/WebCamConfig.html" class="tsd-signature-type" data-tsd-kind="Interface">WebCamConfig</a><span class="tsd-signature-symbol">></span></h5></li></ul></div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L106">src/util/webcam.ts:106</a></li></ul></aside></li></ul></section>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L106">src/util/webcam.ts:106</a></li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="stop" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="stop" class="tsd-anchor"></a>
|
||||||
|
@ -232,7 +232,7 @@
|
||||||
</div>
|
</div>
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L205">src/util/webcam.ts:205</a></li></ul></aside></li></ul></section></section></div>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/util/webcam.ts#L206">src/util/webcam.ts:206</a></li></ul></aside></li></ul></section></section></div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<div class="tsd-navigation settings">
|
<div class="tsd-navigation settings">
|
||||||
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
||||||
|
@ -249,7 +249,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Models | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Models | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/models.html">models</a></li>
|
<li><a href="../modules/models.html">models</a></li>
|
||||||
<li><a href="models.Models.html">Models</a></li></ul>
|
<li><a href="models.Models.html">Models</a></li></ul>
|
||||||
<h1>Class Models</h1></div>
|
<h1>Class Models</h1></div>
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>loaded<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span> </span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span>size<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">; </span><br/><span> </span>url<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>loaded<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span> </span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span>size<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">; </span><br/><span> </span>url<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L166">src/models.ts:166</a></li></ul></aside></li></ul></section>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L170">src/models.ts:170</a></li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="load" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="load" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>load</span><a href="#load" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>load</span><a href="#load" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L177">src/models.ts:177</a></li></ul></aside></li></ul></section>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L181">src/models.ts:181</a></li></ul></aside></li></ul></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="reset" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="reset" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>reset</span><a href="#reset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>reset</span><a href="#reset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>missing<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">{ </span><br/><span> </span>missing<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L183">src/models.ts:183</a></li></ul></aside></li></ul></section></section></div>
|
<li>Defined in <a href="https://github.com/vladmandic/human/blob/main/src/models.ts#L187">src/models.ts:187</a></li></ul></aside></li></ul></section></section></div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<div class="tsd-navigation settings">
|
<div class="tsd-navigation settings">
|
||||||
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Rank | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Rank | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,17 +6,17 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Rank.html">Rank</a></li></ul>
|
<li><a href="Rank.html">Rank</a></li></ul>
|
||||||
<h1>Enumeration Rank</h1></div><aside class="tsd-sources">
|
<h1>Enumeration Rank</h1></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:62</li></ul></aside>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:62</li></ul></aside>
|
||||||
<section class="tsd-panel-group tsd-index-group">
|
<section class="tsd-panel-group tsd-index-group">
|
||||||
<section class="tsd-panel tsd-index-panel">
|
<section class="tsd-panel tsd-index-panel">
|
||||||
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
||||||
|
@ -38,37 +38,37 @@
|
||||||
<h3 class="tsd-anchor-link"><span>R0</span><a href="#R0" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R0</span><a href="#R0" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
|
||||||
<div class="tsd-signature">R0<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R0"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R0<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R0"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:63</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:63</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R1" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R1" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R1</span><a href="#R1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R1</span><a href="#R1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R1<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R1"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R1<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R1"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:64</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:64</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R2" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R2" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R2</span><a href="#R2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R2</span><a href="#R2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R2<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R2"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R2<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R2"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:65</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:65</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R3" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R3" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R3</span><a href="#R3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R3</span><a href="#R3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R3<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R3"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R3<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R3"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:66</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:66</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R4" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R4" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R4</span><a href="#R4" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R4</span><a href="#R4" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R4<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R4"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R4<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R4"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:67</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:67</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R5" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R5" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R5</span><a href="#R5" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R5</span><a href="#R5" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R5<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R5"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R5<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R5"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:68</li></ul></aside></section>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:68</li></ul></aside></section>
|
||||||
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R6" class="tsd-anchor"></a>
|
<section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="R6" class="tsd-anchor"></a>
|
||||||
<h3 class="tsd-anchor-link"><span>R6</span><a href="#R6" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
<h3 class="tsd-anchor-link"><span>R6</span><a href="#R6" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
||||||
<div class="tsd-signature">R6<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R6"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">R6<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"R6"</span></div><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:69</li></ul></aside></section></section></div>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/types.d.ts:69</li></ul></aside></section></section></div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<div class="tsd-navigation settings">
|
<div class="tsd-navigation settings">
|
||||||
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>all | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>all | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.all.html">all</a></li></ul>
|
<li><a href="draw.all.html">all</a></li></ul>
|
||||||
<h1>Function all</h1></div>
|
<h1>Function all</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>body | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>body | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.body.html">body</a></li></ul>
|
<li><a href="draw.body.html">body</a></li></ul>
|
||||||
<h1>Function body</h1></div>
|
<h1>Function body</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>canvas | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>canvas | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.canvas.html">canvas</a></li></ul>
|
<li><a href="draw.canvas.html">canvas</a></li></ul>
|
||||||
<h1>Function canvas</h1></div>
|
<h1>Function canvas</h1></div>
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>face | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>face | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.face.html">face</a></li></ul>
|
<li><a href="draw.face.html">face</a></li></ul>
|
||||||
<h1>Function face</h1></div>
|
<h1>Function face</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>gesture | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>gesture | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.gesture.html">gesture</a></li></ul>
|
<li><a href="draw.gesture.html">gesture</a></li></ul>
|
||||||
<h1>Function gesture</h1></div>
|
<h1>Function gesture</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>hand | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>hand | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.hand.html">hand</a></li></ul>
|
<li><a href="draw.hand.html">hand</a></li></ul>
|
||||||
<h1>Function hand</h1></div>
|
<h1>Function hand</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>init | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>init | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.init.html">init</a></li></ul>
|
<li><a href="draw.init.html">init</a></li></ul>
|
||||||
<h1>Function init</h1></div>
|
<h1>Function init</h1></div>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>object | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>object | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.object.html">object</a></li></ul>
|
<li><a href="draw.object.html">object</a></li></ul>
|
||||||
<h1>Function object</h1></div>
|
<h1>Function object</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>person | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>person | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/draw.html">draw</a></li>
|
<li><a href="../modules/draw.html">draw</a></li>
|
||||||
<li><a href="draw.person.html">person</a></li></ul>
|
<li><a href="draw.person.html">person</a></li></ul>
|
||||||
<h1>Function person</h1></div>
|
<h1>Function person</h1></div>
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="current tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>empty | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>empty | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="empty.html">empty</a></li></ul>
|
<li><a href="empty.html">empty</a></li></ul>
|
||||||
<h1>Function empty</h1></div>
|
<h1>Function empty</h1></div>
|
||||||
<section class="tsd-panel">
|
<section class="tsd-panel">
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>distance | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>distance | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/match.html">match</a></li>
|
<li><a href="../modules/match.html">match</a></li>
|
||||||
<li><a href="match.distance.html">distance</a></li></ul>
|
<li><a href="match.distance.html">distance</a></li></ul>
|
||||||
<h1>Function distance</h1></div>
|
<h1>Function distance</h1></div>
|
||||||
|
@ -58,7 +58,7 @@ default is 20 which normalizes results to similarity above 0.5 can be considered
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>find | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>find | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/match.html">match</a></li>
|
<li><a href="../modules/match.html">match</a></li>
|
||||||
<li><a href="match.find.html">find</a></li></ul>
|
<li><a href="match.find.html">find</a></li></ul>
|
||||||
<h1>Function find</h1></div>
|
<h1>Function find</h1></div>
|
||||||
|
@ -69,7 +69,7 @@ Returns</p>
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>similarity | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>similarity | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/match.html">match</a></li>
|
<li><a href="../modules/match.html">match</a></li>
|
||||||
<li><a href="match.similarity.html">similarity</a></li></ul>
|
<li><a href="match.similarity.html">similarity</a></li></ul>
|
||||||
<h1>Function similarity</h1></div>
|
<h1>Function similarity</h1></div>
|
||||||
|
@ -62,7 +62,7 @@ Returns similarity between two face descriptors normalized to 0..1 range where 0
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>validateModel | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>validateModel | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/models.html">models</a></li>
|
<li><a href="../modules/models.html">models</a></li>
|
||||||
<li><a href="models.validateModel.html">validateModel</a></li></ul>
|
<li><a href="models.validateModel.html">validateModel</a></li></ul>
|
||||||
<h1>Function validateModel</h1></div>
|
<h1>Function validateModel</h1></div>
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>@vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>@vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base=".">
|
<div class="table-cell" id="tsd-search" data-base=".">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,12 +6,12 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<h2>@vladmandic/human - v3.0.6</h2></div>
|
<h2>@vladmandic/human - v3.0.7</h2></div>
|
||||||
<section class="tsd-panel-group tsd-index-group">
|
<section class="tsd-panel-group tsd-index-group">
|
||||||
<section class="tsd-panel tsd-index-panel">
|
<section class="tsd-panel tsd-index-panel">
|
||||||
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
||||||
|
@ -142,7 +142,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current selected"><a href="index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current selected"><a href="index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyConfig.html">BodyConfig</a></li></ul>
|
<li><a href="BodyConfig.html">BodyConfig</a></li></ul>
|
||||||
<h1>Interface BodyConfig</h1></div>
|
<h1>Interface BodyConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -106,7 +106,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyKeypoint | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyKeypoint | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyKeypoint.html">BodyKeypoint</a></li></ul>
|
<li><a href="BodyKeypoint.html">BodyKeypoint</a></li></ul>
|
||||||
<h1>Interface BodyKeypoint</h1></div>
|
<h1>Interface BodyKeypoint</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -90,7 +90,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyResult | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyResult | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyResult.html">BodyResult</a></li></ul>
|
<li><a href="BodyResult.html">BodyResult</a></li></ul>
|
||||||
<h1>Interface BodyResult</h1></div>
|
<h1>Interface BodyResult</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Config | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Config | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Config.html">Config</a></li></ul>
|
<li><a href="Config.html">Config</a></li></ul>
|
||||||
<h1>Interface Config</h1></div>
|
<h1>Interface Config</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -248,7 +248,7 @@ any errors will be printed on console but will be treated as non-fatal</p>
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DrawOptions | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DrawOptions | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="DrawOptions.html">DrawOptions</a></li></ul>
|
<li><a href="DrawOptions.html">DrawOptions</a></li></ul>
|
||||||
<h1>Interface DrawOptions</h1></div>
|
<h1>Interface DrawOptions</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -261,7 +261,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceAntiSpoofConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceAntiSpoofConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceAntiSpoofConfig.html">FaceAntiSpoofConfig</a></li></ul>
|
<li><a href="FaceAntiSpoofConfig.html">FaceAntiSpoofConfig</a></li></ul>
|
||||||
<h1>Interface FaceAntiSpoofConfig</h1></div>
|
<h1>Interface FaceAntiSpoofConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -90,7 +90,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceAttentionConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceAttentionConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceAttentionConfig.html">FaceAttentionConfig</a></li></ul>
|
<li><a href="FaceAttentionConfig.html">FaceAttentionConfig</a></li></ul>
|
||||||
<h1>Interface FaceAttentionConfig</h1></div>
|
<h1>Interface FaceAttentionConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -90,7 +90,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceConfig.html">FaceConfig</a></li></ul>
|
<li><a href="FaceConfig.html">FaceConfig</a></li></ul>
|
||||||
<h1>Interface FaceConfig</h1></div>
|
<h1>Interface FaceConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -144,7 +144,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceDescriptionConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceDescriptionConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceDescriptionConfig.html">FaceDescriptionConfig</a></li></ul>
|
<li><a href="FaceDescriptionConfig.html">FaceDescriptionConfig</a></li></ul>
|
||||||
<h1>Interface FaceDescriptionConfig</h1></div>
|
<h1>Interface FaceDescriptionConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -101,7 +101,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceDetectorConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceDetectorConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceDetectorConfig.html">FaceDetectorConfig</a></li></ul>
|
<li><a href="FaceDetectorConfig.html">FaceDetectorConfig</a></li></ul>
|
||||||
<h1>Interface FaceDetectorConfig</h1></div>
|
<h1>Interface FaceDetectorConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -148,7 +148,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceEmotionConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceEmotionConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceEmotionConfig.html">FaceEmotionConfig</a></li></ul>
|
<li><a href="FaceEmotionConfig.html">FaceEmotionConfig</a></li></ul>
|
||||||
<h1>Interface FaceEmotionConfig</h1></div>
|
<h1>Interface FaceEmotionConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -98,7 +98,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceGearConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceGearConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceGearConfig.html">FaceGearConfig</a></li></ul>
|
<li><a href="FaceGearConfig.html">FaceGearConfig</a></li></ul>
|
||||||
<h1>Interface FaceGearConfig</h1></div>
|
<h1>Interface FaceGearConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -98,7 +98,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceIrisConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceIrisConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceIrisConfig.html">FaceIrisConfig</a></li></ul>
|
<li><a href="FaceIrisConfig.html">FaceIrisConfig</a></li></ul>
|
||||||
<h1>Interface FaceIrisConfig</h1></div>
|
<h1>Interface FaceIrisConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -90,7 +90,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceLivenessConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceLivenessConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceLivenessConfig.html">FaceLivenessConfig</a></li></ul>
|
<li><a href="FaceLivenessConfig.html">FaceLivenessConfig</a></li></ul>
|
||||||
<h1>Interface FaceLivenessConfig</h1></div>
|
<h1>Interface FaceLivenessConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -90,7 +90,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceMeshConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceMeshConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceMeshConfig.html">FaceMeshConfig</a></li></ul>
|
<li><a href="FaceMeshConfig.html">FaceMeshConfig</a></li></ul>
|
||||||
<h1>Interface FaceMeshConfig</h1></div>
|
<h1>Interface FaceMeshConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -98,7 +98,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceResult | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceResult | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceResult.html">FaceResult</a></li></ul>
|
<li><a href="FaceResult.html">FaceResult</a></li></ul>
|
||||||
<h1>Interface FaceResult</h1></div>
|
<h1>Interface FaceResult</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -222,7 +222,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FilterConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FilterConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FilterConfig.html">FilterConfig</a></li></ul>
|
<li><a href="FilterConfig.html">FilterConfig</a></li></ul>
|
||||||
<h1>Interface FilterConfig</h1></div>
|
<h1>Interface FilterConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -227,7 +227,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GenericConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GenericConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="GenericConfig.html">GenericConfig</a></li></ul>
|
<li><a href="GenericConfig.html">GenericConfig</a></li></ul>
|
||||||
<h1>Interface GenericConfig</h1></div>
|
<h1>Interface GenericConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -99,7 +99,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GestureConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>GestureConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="GestureConfig.html">GestureConfig</a></li></ul>
|
<li><a href="GestureConfig.html">GestureConfig</a></li></ul>
|
||||||
<h1>Interface GestureConfig</h1></div>
|
<h1>Interface GestureConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HandConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HandConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="HandConfig.html">HandConfig</a></li></ul>
|
<li><a href="HandConfig.html">HandConfig</a></li></ul>
|
||||||
<h1>Interface HandConfig</h1></div>
|
<h1>Interface HandConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -156,7 +156,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HandResult | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HandResult | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="HandResult.html">HandResult</a></li></ul>
|
<li><a href="HandResult.html">HandResult</a></li></ul>
|
||||||
<h1>Interface HandResult</h1></div>
|
<h1>Interface HandResult</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ModelInfo | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ModelInfo | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="ModelInfo.html">ModelInfo</a></li></ul>
|
<li><a href="ModelInfo.html">ModelInfo</a></li></ul>
|
||||||
<h1>Interface ModelInfo</h1></div>
|
<h1>Interface ModelInfo</h1></div>
|
||||||
<section class="tsd-panel tsd-hierarchy">
|
<section class="tsd-panel tsd-hierarchy">
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ObjectConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ObjectConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="ObjectConfig.html">ObjectConfig</a></li></ul>
|
<li><a href="ObjectConfig.html">ObjectConfig</a></li></ul>
|
||||||
<h1>Interface ObjectConfig</h1></div>
|
<h1>Interface ObjectConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -114,7 +114,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ObjectResult | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ObjectResult | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="ObjectResult.html">ObjectResult</a></li></ul>
|
<li><a href="ObjectResult.html">ObjectResult</a></li></ul>
|
||||||
<h1>Interface ObjectResult</h1></div>
|
<h1>Interface ObjectResult</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -98,7 +98,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>PersonResult | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>PersonResult | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="PersonResult.html">PersonResult</a></li></ul>
|
<li><a href="PersonResult.html">PersonResult</a></li></ul>
|
||||||
<h1>Interface PersonResult</h1></div>
|
<h1>Interface PersonResult</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Result | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Result | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Result.html">Result</a></li></ul>
|
<li><a href="Result.html">Result</a></li></ul>
|
||||||
<h1>Interface Result</h1></div>
|
<h1>Interface Result</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -147,7 +147,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SegmentationConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SegmentationConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="SegmentationConfig.html">SegmentationConfig</a></li></ul>
|
<li><a href="SegmentationConfig.html">SegmentationConfig</a></li></ul>
|
||||||
<h1>Interface SegmentationConfig</h1></div>
|
<h1>Interface SegmentationConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -110,7 +110,7 @@ for two-phase models such as face and hand caching applies to bounding boxes det
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>WebCamConfig | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>WebCamConfig | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="WebCamConfig.html">WebCamConfig</a></li></ul>
|
<li><a href="WebCamConfig.html">WebCamConfig</a></li></ul>
|
||||||
<h1>Interface WebCamConfig</h1></div>
|
<h1>Interface WebCamConfig</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>KernelOps | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>KernelOps | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/models.html">models</a></li>
|
<li><a href="../modules/models.html">models</a></li>
|
||||||
<li><a href="models.KernelOps.html">KernelOps</a></li></ul>
|
<li><a href="models.KernelOps.html">KernelOps</a></li></ul>
|
||||||
<h1>Interface KernelOps</h1></div>
|
<h1>Interface KernelOps</h1></div>
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ModelStats | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ModelStats | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="../modules/models.html">models</a></li>
|
<li><a href="../modules/models.html">models</a></li>
|
||||||
<li><a href="models.ModelStats.html">ModelStats</a></li></ul>
|
<li><a href="models.ModelStats.html">ModelStats</a></li></ul>
|
||||||
<h1>Interface ModelStats</h1></div>
|
<h1>Interface ModelStats</h1></div>
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Tensor | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Tensor | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,158 +6,158 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Tensor.html">Tensor</a></li></ul>
|
<li><a href="Tensor.html">Tensor</a></li></ul>
|
||||||
<h1>Namespace Tensor</h1></div>
|
<h1>Namespace Tensor</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
<div class="tsd-comment tsd-typography"><p>Explict reexport of main @tensorflow/tfjs types</p>
|
<div class="tsd-comment tsd-typography"><p>Explict reexport of main @tensorflow/tfjs types</p>
|
||||||
</div></section><aside class="tsd-sources">
|
</div></section><aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/tensor.d.ts:115</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/tensor.d.ts:115</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/tensor.d.ts:130</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/tensor.d.ts:130</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/abs.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/abs.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/acos.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/acos.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/acosh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/acosh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/add.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/add.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/all.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/all.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/any.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/any.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/arg_max.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/arg_max.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/arg_min.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/arg_min.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as_scalar.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as_scalar.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as_type.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as_type.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as1d.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as1d.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as2d.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as2d.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as3d.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as3d.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as4d.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as4d.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as5d.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/as5d.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/asin.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/asin.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/asinh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/asinh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atan.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atan.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atan2.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atan2.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atanh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/atanh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/avg_pool.d.ts:21</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/avg_pool.d.ts:21</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/batch_to_space_nd.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/batch_to_space_nd.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/batchnorm.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/batchnorm.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/broadcast_to.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/broadcast_to.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cast.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cast.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ceil.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ceil.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/clip_by_value.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/clip_by_value.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/concat.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/concat.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv1d.d.ts:5</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv1d.d.ts:5</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv2d_transpose.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv2d_transpose.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv2d.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/conv2d.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cos.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cos.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cosh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cosh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cumprod.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cumprod.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cumsum.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/cumsum.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/depth_to_space.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/depth_to_space.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/depthwise_conv2d.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/depthwise_conv2d.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/dilation2d.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/dilation2d.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/div_no_nan.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/div_no_nan.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/div.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/div.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/dot.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/dot.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/elu.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/elu.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/equal.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/equal.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/erf.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/erf.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/euclidean_norm.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/euclidean_norm.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/exp.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/exp.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/expand_dims.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/expand_dims.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/expm1.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/expm1.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/fft.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/fft.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/flatten.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/flatten.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/floor.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/floor.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/floorDiv.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/floorDiv.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/gather.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/gather.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/greater_equal.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/greater_equal.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/greater.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/greater.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ifft.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ifft.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/irfft.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/irfft.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_finite.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_finite.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_inf.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_inf.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_nan.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/is_nan.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/leaky_relu.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/leaky_relu.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/less_equal.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/less_equal.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/less.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/less.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/local_response_normalization.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/local_response_normalization.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_sigmoid.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_sigmoid.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_softmax.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_softmax.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_sum_exp.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log_sum_exp.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log1p.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/log1p.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_and.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_and.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_not.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_not.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_or.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_or.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_xor.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/logical_xor.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mat_mul.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mat_mul.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/max_pool.d.ts:21</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/max_pool.d.ts:21</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/max.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/max.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/maximum.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/maximum.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mean.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mean.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/min.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/min.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/minimum.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/minimum.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mirror_pad.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mirror_pad.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mod.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mod.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mul.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/mul.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/neg.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/neg.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/norm.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/norm.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/not_equal.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/not_equal.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/one_hot.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/one_hot.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ones_like.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/ones_like.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pad.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pad.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pool.d.ts:21</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pool.d.ts:21</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pow.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/pow.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/prelu.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/prelu.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/prod.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/prod.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reciprocal.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reciprocal.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/relu.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/relu.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/relu6.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/relu6.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reshape_as.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reshape_as.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reshape.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reshape.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/resize_bilinear.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/resize_bilinear.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/resize_nearest_neighbor.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/resize_nearest_neighbor.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reverse.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/reverse.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/rfft.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/rfft.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/round.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/round.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/rsqrt.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/rsqrt.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/selu.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/selu.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/separable_conv2d.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/separable_conv2d.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sigmoid.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sigmoid.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sign.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sign.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sin.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sin.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sinh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sinh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/slice.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/slice.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/softmax.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/softmax.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/softplus.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/softplus.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/space_to_batch_nd.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/space_to_batch_nd.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/split.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/split.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sqrt.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sqrt.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/square.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/square.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/squared_difference.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/squared_difference.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/squeeze.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/squeeze.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/stack.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/stack.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/step.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/step.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/strided_slice.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/strided_slice.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sub.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sub.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sum.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/sum.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tan.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tan.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tanh.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tanh.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tile.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/tile.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_bool.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_bool.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_float.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_float.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_int.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/to_int.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/topk.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/topk.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/transpose.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/transpose.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unique.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unique.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unsorted_segment_sum.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unsorted_segment_sum.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unstack.d.ts:4</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/unstack.d.ts:4</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/where.d.ts:20</li>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/where.d.ts:20</li>
|
||||||
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.5.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/zeros_like.d.ts:20</li></ul></aside></div>
|
<li>Defined in node_modules/.pnpm/@tensorflow+tfjs-core@4.7.0/node_modules/@tensorflow/tfjs-core/dist/public/chained_ops/zeros_like.d.ts:20</li></ul></aside></div>
|
||||||
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
<div class="tsd-navigation settings">
|
<div class="tsd-navigation settings">
|
||||||
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current selected tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
<li class="current selected tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>draw | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>draw | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="draw.html">draw</a></li></ul>
|
<li><a href="draw.html">draw</a></li></ul>
|
||||||
<h1>Namespace draw</h1></div>
|
<h1>Namespace draw</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
||||||
<li class="current selected tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
<li class="current selected tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>match | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>match | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="match.html">match</a></li></ul>
|
<li><a href="match.html">match</a></li></ul>
|
||||||
<h1>Namespace match</h1></div>
|
<h1>Namespace match</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>models | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>models | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="models.html">models</a></li></ul>
|
<li><a href="models.html">models</a></li></ul>
|
||||||
<h1>Namespace models</h1></div>
|
<h1>Namespace models</h1></div>
|
||||||
<section class="tsd-panel tsd-comment">
|
<section class="tsd-panel tsd-comment">
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li class="current"><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyCanvas | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyCanvas | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="AnyCanvas.html">AnyCanvas</a></li></ul>
|
<li><a href="AnyCanvas.html">AnyCanvas</a></li></ul>
|
||||||
<h1>Type alias AnyCanvas</h1></div>
|
<h1>Type alias AnyCanvas</h1></div>
|
||||||
<div class="tsd-signature">Any<wbr/>Canvas<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLCanvasElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">OffscreenCanvas</span></div>
|
<div class="tsd-signature">Any<wbr/>Canvas<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLCanvasElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">OffscreenCanvas</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyImage | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyImage | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="AnyImage.html">AnyImage</a></li></ul>
|
<li><a href="AnyImage.html">AnyImage</a></li></ul>
|
||||||
<h1>Type alias AnyImage</h1></div>
|
<h1>Type alias AnyImage</h1></div>
|
||||||
<div class="tsd-signature">Any<wbr/>Image<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLImageElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">typeof </span><span class="tsd-signature-type">Image</span></div>
|
<div class="tsd-signature">Any<wbr/>Image<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLImageElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">typeof </span><span class="tsd-signature-type">Image</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyVideo | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>AnyVideo | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="AnyVideo.html">AnyVideo</a></li></ul>
|
<li><a href="AnyVideo.html">AnyVideo</a></li></ul>
|
||||||
<h1>Type alias AnyVideo</h1></div>
|
<h1>Type alias AnyVideo</h1></div>
|
||||||
<div class="tsd-signature">Any<wbr/>Video<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLMediaElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLVideoElement</span></div>
|
<div class="tsd-signature">Any<wbr/>Video<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">HTMLMediaElement</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLVideoElement</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BackendEnum | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BackendEnum | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BackendEnum.html">BackendEnum</a></li></ul>
|
<li><a href="BackendEnum.html">BackendEnum</a></li></ul>
|
||||||
<h1>Type alias BackendEnum</h1></div>
|
<h1>Type alias BackendEnum</h1></div>
|
||||||
<div class="tsd-signature">Backend<wbr/>Enum<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">""</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"cpu"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"wasm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"webgl"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"humangl"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"tensorflow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"webgpu"</span></div>
|
<div class="tsd-signature">Backend<wbr/>Enum<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">""</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"cpu"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"wasm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"webgl"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"humangl"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"tensorflow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"webgpu"</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotation | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotation | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyAnnotation.html">BodyAnnotation</a></li></ul>
|
<li><a href="BodyAnnotation.html">BodyAnnotation</a></li></ul>
|
||||||
<h1>Type alias BodyAnnotation</h1></div>
|
<h1>Type alias BodyAnnotation</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Annotation<span class="tsd-signature-symbol">:</span> <a href="BodyAnnotationBlazePose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyAnnotationBlazePose</a><span class="tsd-signature-symbol"> | </span><a href="BodyAnnotationEfficientPose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyAnnotationEfficientPose</a></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Annotation<span class="tsd-signature-symbol">:</span> <a href="BodyAnnotationBlazePose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyAnnotationBlazePose</a><span class="tsd-signature-symbol"> | </span><a href="BodyAnnotationEfficientPose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyAnnotationEfficientPose</a></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotationBlazePose | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotationBlazePose | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyAnnotationBlazePose.html">BodyAnnotationBlazePose</a></li></ul>
|
<li><a href="BodyAnnotationBlazePose.html">BodyAnnotationBlazePose</a></li></ul>
|
||||||
<h1>Type alias BodyAnnotationBlazePose</h1></div>
|
<h1>Type alias BodyAnnotationBlazePose</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Annotation<wbr/>Blaze<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"torso"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"mouth"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Annotation<wbr/>Blaze<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"torso"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"mouth"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotationEfficientPose | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyAnnotationEfficientPose | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyAnnotationEfficientPose.html">BodyAnnotationEfficientPose</a></li></ul>
|
<li><a href="BodyAnnotationEfficientPose.html">BodyAnnotationEfficientPose</a></li></ul>
|
||||||
<h1>Type alias BodyAnnotationEfficientPose</h1></div>
|
<h1>Type alias BodyAnnotationEfficientPose</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Annotation<wbr/>Efficient<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"torso"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"head"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Annotation<wbr/>Efficient<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightLeg"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"torso"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightArm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"head"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyGesture | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyGesture | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyGesture.html">BodyGesture</a></li></ul>
|
<li><a href="BodyGesture.html">BodyGesture</a></li></ul>
|
||||||
<h1>Type alias BodyGesture</h1></div>
|
<h1>Type alias BodyGesture</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Gesture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">leaning </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">raise </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type"> hand</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"i give up"</span></div>
|
<div class="tsd-signature">Body<wbr/>Gesture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">leaning </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">raise </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type"> hand</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"i give up"</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmark | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmark | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyLandmark.html">BodyLandmark</a></li></ul>
|
<li><a href="BodyLandmark.html">BodyLandmark</a></li></ul>
|
||||||
<h1>Type alias BodyLandmark</h1></div>
|
<h1>Type alias BodyLandmark</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Landmark<span class="tsd-signature-symbol">:</span> <a href="BodyLandmarkPoseNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkPoseNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkMoveNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkMoveNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkEfficientNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkEfficientNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkBlazePose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkBlazePose</a></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Landmark<span class="tsd-signature-symbol">:</span> <a href="BodyLandmarkPoseNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkPoseNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkMoveNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkMoveNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkEfficientNet.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkEfficientNet</a><span class="tsd-signature-symbol"> | </span><a href="BodyLandmarkBlazePose.html" class="tsd-signature-type" data-tsd-kind="Type alias">BodyLandmarkBlazePose</a></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkBlazePose | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkBlazePose | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyLandmarkBlazePose.html">BodyLandmarkBlazePose</a></li></ul>
|
<li><a href="BodyLandmarkBlazePose.html">BodyLandmarkBlazePose</a></li></ul>
|
||||||
<h1>Type alias BodyLandmarkBlazePose</h1></div>
|
<h1>Type alias BodyLandmarkBlazePose</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Blaze<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeInside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeOutside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeInside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeOutside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftMouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightMouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftPinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightPinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftIndex"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightIndex"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftThumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightThumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHeel"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHeel"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftFoot"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightFoot"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyCenter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyTop"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftPalm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHand"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightPalm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHand"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Blaze<wbr/>Pose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeInside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeOutside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeInside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeOutside"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftMouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightMouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftPinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightPinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftIndex"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightIndex"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftThumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightThumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHeel"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHeel"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftFoot"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightFoot"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyCenter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyTop"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftPalm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHand"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightPalm"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHand"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkEfficientNet | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkEfficientNet | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyLandmarkEfficientNet.html">BodyLandmarkEfficientNet</a></li></ul>
|
<li><a href="BodyLandmarkEfficientNet.html">BodyLandmarkEfficientNet</a></li></ul>
|
||||||
<h1>Type alias BodyLandmarkEfficientNet</h1></div>
|
<h1>Type alias BodyLandmarkEfficientNet</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Efficient<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"head"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"neck"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"chest"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyCenter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Efficient<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"head"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"neck"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"chest"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"bodyCenter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkMoveNet | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkMoveNet | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyLandmarkMoveNet.html">BodyLandmarkMoveNet</a></li></ul>
|
<li><a href="BodyLandmarkMoveNet.html">BodyLandmarkMoveNet</a></li></ul>
|
||||||
<h1>Type alias BodyLandmarkMoveNet</h1></div>
|
<h1>Type alias BodyLandmarkMoveNet</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Move<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Move<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkPoseNet | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>BodyLandmarkPoseNet | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="BodyLandmarkPoseNet.html">BodyLandmarkPoseNet</a></li></ul>
|
<li><a href="BodyLandmarkPoseNet.html">BodyLandmarkPoseNet</a></li></ul>
|
||||||
<h1>Type alias BodyLandmarkPoseNet</h1></div>
|
<h1>Type alias BodyLandmarkPoseNet</h1></div>
|
||||||
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Pose<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Body<wbr/>Landmark<wbr/>Pose<wbr/>Net<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightShoulder"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightElbow"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightWrist"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightHip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightKnee"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftAnkle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightAnkle"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Box | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Box | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Box.html">Box</a></li></ul>
|
<li><a href="Box.html">Box</a></li></ul>
|
||||||
<h1>Type alias Box</h1></div>
|
<h1>Type alias Box</h1></div>
|
||||||
<div class="tsd-signature">Box<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">]</span></div>
|
<div class="tsd-signature">Box<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">]</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Emotion | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Emotion | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Emotion.html">Emotion</a></li></ul>
|
<li><a href="Emotion.html">Emotion</a></li></ul>
|
||||||
<h1>Type alias Emotion</h1></div>
|
<h1>Type alias Emotion</h1></div>
|
||||||
<div class="tsd-signature">Emotion<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"angry"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"disgust"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"fear"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"happy"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"sad"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"surprise"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"neutral"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Emotion<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"angry"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"disgust"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"fear"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"happy"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"sad"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"surprise"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"neutral"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Events | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Events | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Events.html">Events</a></li></ul>
|
<li><a href="Events.html">Events</a></li></ul>
|
||||||
<h1>Type alias Events</h1></div>
|
<h1>Type alias Events</h1></div>
|
||||||
<div class="tsd-signature">Events<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"create"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"load"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"image"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"result"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"warmup"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"error"</span></div>
|
<div class="tsd-signature">Events<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"create"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"load"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"image"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"result"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"warmup"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"error"</span></div>
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ExternalCanvas | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ExternalCanvas | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="ExternalCanvas.html">ExternalCanvas</a></li></ul>
|
<li><a href="ExternalCanvas.html">ExternalCanvas</a></li></ul>
|
||||||
<h1>Type alias ExternalCanvas</h1></div>
|
<h1>Type alias ExternalCanvas</h1></div>
|
||||||
<div class="tsd-signature">External<wbr/>Canvas<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">typeof </span><a href="../classes/Env.html#Canvas" class="tsd-signature-type" data-tsd-kind="Accessor">Canvas</a></div>
|
<div class="tsd-signature">External<wbr/>Canvas<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">typeof </span><a href="../classes/Env.html#Canvas" class="tsd-signature-type" data-tsd-kind="Accessor">Canvas</a></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceGesture | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceGesture | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceGesture.html">FaceGesture</a></li></ul>
|
<li><a href="FaceGesture.html">FaceGesture</a></li></ul>
|
||||||
<h1>Type alias FaceGesture</h1></div>
|
<h1>Type alias FaceGesture</h1></div>
|
||||||
<div class="tsd-signature">Face<wbr/>Gesture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">facing </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"center"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">blink </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type"> eye</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">mouth </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type">% open</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">head </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"up"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"down"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span></div>
|
<div class="tsd-signature">Face<wbr/>Gesture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">facing </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"center"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">blink </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"left"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"right"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type"> eye</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">mouth </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-type">% open</span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">`</span><span class="tsd-signature-type">head </span><span class="tsd-signature-symbol">${</span><span class="tsd-signature-type">"up"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"down"</span><span class="tsd-signature-symbol">}</span><span class="tsd-signature-symbol">`</span></div>
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceLandmark | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FaceLandmark | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FaceLandmark.html">FaceLandmark</a></li></ul>
|
<li><a href="FaceLandmark.html">FaceLandmark</a></li></ul>
|
||||||
<h1>Type alias FaceLandmark</h1></div>
|
<h1>Type alias FaceLandmark</h1></div>
|
||||||
<div class="tsd-signature">Face<wbr/>Landmark<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"mouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"symmetryLine"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"silhouette"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsUpperOuter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsLowerOuter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsUpperInner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsLowerInner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower3"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyebrowUpper"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyebrowLower"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeIris"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower3"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyebrowUpper"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyebrowLower"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeIris"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"midwayBetweenEyes"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseTip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseBottom"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseRightCorner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseLeftCorner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightCheek"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftCheek"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Face<wbr/>Landmark<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"leftEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEye"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"nose"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"mouth"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEar"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"symmetryLine"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"silhouette"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsUpperOuter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsLowerOuter"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsUpperInner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"lipsLowerInner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeUpper2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeLower3"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyebrowUpper"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyebrowLower"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightEyeIris"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower0"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower1"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeUpper2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower2"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeLower3"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyebrowUpper"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyebrowLower"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftEyeIris"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"midwayBetweenEyes"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseTip"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseBottom"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseRightCorner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"noseLeftCorner"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"rightCheek"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"leftCheek"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Finger | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Finger | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Finger.html">Finger</a></li></ul>
|
<li><a href="Finger.html">Finger</a></li></ul>
|
||||||
<h1>Type alias Finger</h1></div>
|
<h1>Type alias Finger</h1></div>
|
||||||
<div class="tsd-signature">Finger<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"index"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"middle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"pinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"ring"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"thumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"palm"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Finger<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"index"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"middle"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"pinky"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"ring"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"thumb"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"palm"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FingerCurl | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FingerCurl | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FingerCurl.html">FingerCurl</a></li></ul>
|
<li><a href="FingerCurl.html">FingerCurl</a></li></ul>
|
||||||
<h1>Type alias FingerCurl</h1></div>
|
<h1>Type alias FingerCurl</h1></div>
|
||||||
<div class="tsd-signature">Finger<wbr/>Curl<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"none"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"half"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"full"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Finger<wbr/>Curl<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"none"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"half"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"full"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FingerDirection | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FingerDirection | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="FingerDirection.html">FingerDirection</a></li></ul>
|
<li><a href="FingerDirection.html">FingerDirection</a></li></ul>
|
||||||
<h1>Type alias FingerDirection</h1></div>
|
<h1>Type alias FingerDirection</h1></div>
|
||||||
<div class="tsd-signature">Finger<wbr/>Direction<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"verticalUp"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"verticalDown"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"horizontalLeft"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"horizontalRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalUpRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalUpLeft"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalDownRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalDownLeft"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Finger<wbr/>Direction<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"verticalUp"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"verticalDown"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"horizontalLeft"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"horizontalRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalUpRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalUpLeft"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalDownRight"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"diagonalDownLeft"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Gender | @vladmandic/human - v3.0.6</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.6"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Gender | @vladmandic/human - v3.0.7</title><meta name="description" content="Documentation for @vladmandic/human - v3.0.7"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
||||||
<div class="tsd-toolbar-contents container">
|
<div class="tsd-toolbar-contents container">
|
||||||
<div class="table-cell" id="tsd-search" data-base="..">
|
<div class="table-cell" id="tsd-search" data-base="..">
|
||||||
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
||||||
|
@ -6,13 +6,13 @@
|
||||||
<div id="tsd-toolbar-links"></div></div>
|
<div id="tsd-toolbar-links"></div></div>
|
||||||
<ul class="results">
|
<ul class="results">
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.6</a></div>
|
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@vladmandic/human - v3.0.7</a></div>
|
||||||
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
||||||
<div class="container container-main">
|
<div class="container container-main">
|
||||||
<div class="col-8 col-content">
|
<div class="col-8 col-content">
|
||||||
<div class="tsd-page-title">
|
<div class="tsd-page-title">
|
||||||
<ul class="tsd-breadcrumb">
|
<ul class="tsd-breadcrumb">
|
||||||
<li><a href="../index.html">@vladmandic/human - v3.0.6</a></li>
|
<li><a href="../index.html">@vladmandic/human - v3.0.7</a></li>
|
||||||
<li><a href="Gender.html">Gender</a></li></ul>
|
<li><a href="Gender.html">Gender</a></li></ul>
|
||||||
<h1>Type alias Gender</h1></div>
|
<h1>Type alias Gender</h1></div>
|
||||||
<div class="tsd-signature">Gender<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"male"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"female"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"unknown"</span></div><aside class="tsd-sources">
|
<div class="tsd-signature">Gender<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"male"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"female"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"unknown"</span></div><aside class="tsd-sources">
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
||||||
<div class="tsd-accordion-details">
|
<div class="tsd-accordion-details">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.6</a>
|
<li><a href="../index.html">@vladmandic/human -<wbr/> v3.0.7</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/Tensor.html">Tensor</a></li>
|
||||||
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
<li class="tsd-kind-namespace"><a href="../modules/draw.html">draw</a></li>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue