diff --git a/CHANGELOG.md b/CHANGELOG.md index 48cf9345..216b1705 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,14 @@ ## Changelog +### **HEAD -> main** 2022/04/01 mandic00@live.com + + ### **2.6.5** 2022/04/01 mandic00@live.com - bundle offscreencanvas types - prototype precompile pass - -### **origin/main** 2022/03/16 mandic00@live.com - +- fix changelog generation - fix indexdb config check ### **2.6.4** 2022/02/27 mandic00@live.com diff --git a/dist/human.d.ts b/dist/human.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.d.ts +++ b/dist/human.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/dist/human.esm-nobundle.d.ts b/dist/human.esm-nobundle.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.esm-nobundle.d.ts +++ b/dist/human.esm-nobundle.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/dist/human.esm.d.ts b/dist/human.esm.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.esm.d.ts +++ b/dist/human.esm.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/dist/human.node-gpu.d.ts b/dist/human.node-gpu.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.node-gpu.d.ts +++ b/dist/human.node-gpu.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/dist/human.node-wasm.d.ts b/dist/human.node-wasm.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.node-wasm.d.ts +++ b/dist/human.node-wasm.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/dist/human.node.d.ts b/dist/human.node.d.ts index 24a05faa..16b4ccaa 100644 --- a/dist/human.node.d.ts +++ b/dist/human.node.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object. diff --git a/src/exports.ts b/src/exports.ts index 1267ab46..725624b0 100644 --- a/src/exports.ts +++ b/src/exports.ts @@ -1,6 +1,5 @@ import type { env } from './util/env'; import type { Tensor } from './tfjs/types'; -import type { OffscreenCanvas } from './tfjs/offscreencanvas'; /* Export configuration details */ export * from './config'; @@ -9,8 +8,6 @@ export * from './result'; /* Explict reexport of main @tensorflow/tfjs types */ export type { Tensor, TensorLike, GraphModel, Rank } from './tfjs/types'; -/* Explict reexport of @types/offscreencanvas to avoid requiring external reference */ -export type { OffscreenCanvas, OffscreenCanvasRenderingContext2D, CanvasDrawImage } from './tfjs/offscreencanvas'; export type { DrawOptions } from './util/draw'; export type { Descriptor } from './face/match'; diff --git a/test/build.log b/test/build.log index b2b51f0b..075b145e 100644 --- a/test/build.log +++ b/test/build.log @@ -1,24 +1,24 @@ -2022-04-01 09:12:16 INFO:  Application: {"name":"@vladmandic/human","version":"2.6.5"} -2022-04-01 09:12:16 INFO:  Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true} -2022-04-01 09:12:16 INFO:  Toolchain: {"build":"0.7.2","esbuild":"0.14.29","typescript":"4.6.3","typedoc":"0.22.13","eslint":"8.12.0"} -2022-04-01 09:12:16 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]} -2022-04-01 09:12:16 STATE: Clean: {"locations":["dist/*","types/lib/*","typedoc/*"]} -2022-04-01 09:12:16 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":595} -2022-04-01 09:12:16 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":64,"inputBytes":564766,"outputBytes":293301} -2022-04-01 09:12:16 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":599} -2022-04-01 09:12:16 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":64,"inputBytes":564770,"outputBytes":293305} -2022-04-01 09:12:16 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":651} -2022-04-01 09:12:16 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":64,"inputBytes":564822,"outputBytes":293355} -2022-04-01 09:12:16 STATE: Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1063,"outputBytes":394} -2022-04-01 09:12:16 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1068,"outputBytes":615} -2022-04-01 09:12:16 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":64,"inputBytes":564786,"outputBytes":292260} -2022-04-01 09:12:17 STATE: Compile: {"name":"tfjs/browser/esm/custom","format":"esm","platform":"browser","input":"tfjs/tf-custom.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1344131} -2022-04-01 09:12:17 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":64,"inputBytes":1908302,"outputBytes":1635407} -2022-04-01 09:12:17 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":64,"inputBytes":1908302,"outputBytes":2113578} -2022-04-01 09:12:23 STATE: Typings: {"input":"src/human.ts","output":"types/lib","files":114} -2022-04-01 09:12:25 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":75,"generated":true} -2022-04-01 09:12:25 STATE: Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":5862,"outputBytes":2915} -2022-04-01 09:12:25 STATE: Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":15174,"outputBytes":7820} -2022-04-01 09:12:33 STATE: Lint: {"locations":["*.json","src/**/*.ts","test/**/*.js","demo/**/*.js"],"files":96,"errors":0,"warnings":0} -2022-04-01 09:12:33 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"} -2022-04-01 09:12:33 INFO:  Done... +2022-04-01 12:36:43 INFO:  Application: {"name":"@vladmandic/human","version":"2.6.5"} +2022-04-01 12:36:43 INFO:  Environment: {"profile":"production","config":".build.json","package":"package.json","tsconfig":true,"eslintrc":true,"git":true} +2022-04-01 12:36:43 INFO:  Toolchain: {"build":"0.7.2","esbuild":"0.14.29","typescript":"4.6.3","typedoc":"0.22.13","eslint":"8.12.0"} +2022-04-01 12:36:43 INFO:  Build: {"profile":"production","steps":["clean","compile","typings","typedoc","lint","changelog"]} +2022-04-01 12:36:43 STATE: Clean: {"locations":["dist/*","types/lib/*","typedoc/*"]} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/nodejs/cpu","format":"cjs","platform":"node","input":"tfjs/tf-node.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":102,"outputBytes":595} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/nodejs/cpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node.js","files":64,"inputBytes":564501,"outputBytes":293301} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/nodejs/gpu","format":"cjs","platform":"node","input":"tfjs/tf-node-gpu.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":599} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/nodejs/gpu","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-gpu.js","files":64,"inputBytes":564505,"outputBytes":293305} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/nodejs/wasm","format":"cjs","platform":"node","input":"tfjs/tf-node-wasm.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":149,"outputBytes":651} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/nodejs/wasm","format":"cjs","platform":"node","input":"src/human.ts","output":"dist/human.node-wasm.js","files":64,"inputBytes":564557,"outputBytes":293355} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/browser/version","format":"esm","platform":"browser","input":"tfjs/tf-version.ts","output":"dist/tfjs.version.js","files":1,"inputBytes":1063,"outputBytes":394} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/browser/esm/nobundle","format":"esm","platform":"browser","input":"tfjs/tf-browser.ts","output":"dist/tfjs.esm.js","files":2,"inputBytes":1068,"outputBytes":615} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/browser/esm/nobundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm-nobundle.js","files":64,"inputBytes":564521,"outputBytes":292260} +2022-04-01 12:36:43 STATE: Compile: {"name":"tfjs/browser/esm/custom","format":"esm","platform":"browser","input":"tfjs/tf-custom.ts","output":"dist/tfjs.esm.js","files":1,"inputBytes":110,"outputBytes":1344131} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/browser/iife/bundle","format":"iife","platform":"browser","input":"src/human.ts","output":"dist/human.js","files":64,"inputBytes":1908037,"outputBytes":1635407} +2022-04-01 12:36:43 STATE: Compile: {"name":"human/browser/esm/bundle","format":"esm","platform":"browser","input":"src/human.ts","output":"dist/human.esm.js","files":64,"inputBytes":1908037,"outputBytes":2113578} +2022-04-01 12:36:48 STATE: Typings: {"input":"src/human.ts","output":"types/lib","files":112} +2022-04-01 12:36:49 STATE: TypeDoc: {"input":"src/human.ts","output":"typedoc","objects":72,"generated":true} +2022-04-01 12:36:49 STATE: Compile: {"name":"demo/typescript","format":"esm","platform":"browser","input":"demo/typescript/index.ts","output":"demo/typescript/index.js","files":1,"inputBytes":5862,"outputBytes":2915} +2022-04-01 12:36:49 STATE: Compile: {"name":"demo/faceid","format":"esm","platform":"browser","input":"demo/faceid/index.ts","output":"demo/faceid/index.js","files":2,"inputBytes":15174,"outputBytes":7820} +2022-04-01 12:36:56 STATE: Lint: {"locations":["*.json","src/**/*.ts","test/**/*.js","demo/**/*.js"],"files":96,"errors":0,"warnings":0} +2022-04-01 12:36:56 STATE: ChangeLog: {"repository":"https://github.com/vladmandic/human","branch":"main","output":"CHANGELOG.md"} +2022-04-01 12:36:56 INFO:  Done... diff --git a/tsconfig.json b/tsconfig.json index 83db3fb6..28a68335 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "types", "baseUrl": "./", "paths": { "tslib": ["./node_modules/tslib/tslib.d.ts"] }, - "lib": ["esnext", "dom"], + "lib": ["esnext", "dom", "webworker"], "allowJs": true, "allowSyntheticDefaultImports": false, "allowUnreachableCode": false, diff --git a/typedoc/assets/search.js b/typedoc/assets/search.js index 714e207f..8d367658 100644 --- a/typedoc/assets/search.js +++ b/typedoc/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"Human\",\"url\":\"classes/Human.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Human.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":2,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Human.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":3,\"kind\":1024,\"name\":\"config\",\"url\":\"classes/Human.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":4,\"kind\":1024,\"name\":\"result\",\"url\":\"classes/Human.html#result\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":5,\"kind\":1024,\"name\":\"state\",\"url\":\"classes/Human.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":6,\"kind\":1024,\"name\":\"process\",\"url\":\"classes/Human.html#process\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":7,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":8,\"kind\":1024,\"name\":\"tensor\",\"url\":\"classes/Human.html#__type-11.tensor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":9,\"kind\":1024,\"name\":\"canvas\",\"url\":\"classes/Human.html#__type-11.canvas-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":10,\"kind\":1024,\"name\":\"tf\",\"url\":\"classes/Human.html#tf\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":11,\"kind\":1024,\"name\":\"env\",\"url\":\"classes/Human.html#env\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":12,\"kind\":1024,\"name\":\"draw\",\"url\":\"classes/Human.html#draw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":13,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":14,\"kind\":1024,\"name\":\"canvas\",\"url\":\"classes/Human.html#__type-1.canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":15,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":16,\"kind\":1024,\"name\":\"face\",\"url\":\"classes/Human.html#__type-1.face\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":17,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":18,\"kind\":1024,\"name\":\"body\",\"url\":\"classes/Human.html#__type-1.body\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":19,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":20,\"kind\":1024,\"name\":\"hand\",\"url\":\"classes/Human.html#__type-1.hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":21,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":22,\"kind\":1024,\"name\":\"gesture\",\"url\":\"classes/Human.html#__type-1.gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":23,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":24,\"kind\":1024,\"name\":\"object\",\"url\":\"classes/Human.html#__type-1.object\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":25,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":26,\"kind\":1024,\"name\":\"person\",\"url\":\"classes/Human.html#__type-1.person\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":27,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":28,\"kind\":1024,\"name\":\"all\",\"url\":\"classes/Human.html#__type-1.all\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":29,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":30,\"kind\":1024,\"name\":\"options\",\"url\":\"classes/Human.html#__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":31,\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Human.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":32,\"kind\":1024,\"name\":\"faceTriangulation\",\"url\":\"classes/Human.html#faceTriangulation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":33,\"kind\":1024,\"name\":\"faceUVMap\",\"url\":\"classes/Human.html#faceUVMap\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":34,\"kind\":1024,\"name\":\"performance\",\"url\":\"classes/Human.html#performance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":35,\"kind\":1024,\"name\":\"gl\",\"url\":\"classes/Human.html#gl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":36,\"kind\":2048,\"name\":\"analyze\",\"url\":\"classes/Human.html#analyze\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":37,\"kind\":2048,\"name\":\"reset\",\"url\":\"classes/Human.html#reset\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":38,\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/Human.html#validate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":39,\"kind\":1024,\"name\":\"similarity\",\"url\":\"classes/Human.html#similarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":40,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":41,\"kind\":1024,\"name\":\"distance\",\"url\":\"classes/Human.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":42,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":43,\"kind\":1024,\"name\":\"match\",\"url\":\"classes/Human.html#match\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":44,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":45,\"kind\":2048,\"name\":\"now\",\"url\":\"classes/Human.html#now\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":46,\"kind\":2048,\"name\":\"image\",\"url\":\"classes/Human.html#image\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":47,\"kind\":2048,\"name\":\"segmentation\",\"url\":\"classes/Human.html#segmentation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":48,\"kind\":2048,\"name\":\"enhance\",\"url\":\"classes/Human.html#enhance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":49,\"kind\":2048,\"name\":\"compare\",\"url\":\"classes/Human.html#compare\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":50,\"kind\":2048,\"name\":\"init\",\"url\":\"classes/Human.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":51,\"kind\":2048,\"name\":\"load\",\"url\":\"classes/Human.html#load\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":52,\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/Human.html#emit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":53,\"kind\":2048,\"name\":\"next\",\"url\":\"classes/Human.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":54,\"kind\":2048,\"name\":\"warmup\",\"url\":\"classes/Human.html#warmup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":55,\"kind\":2048,\"name\":\"profile\",\"url\":\"classes/Human.html#profile\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":56,\"kind\":2048,\"name\":\"detect\",\"url\":\"classes/Human.html#detect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":57,\"kind\":16777216,\"name\":\"default\",\"url\":\"index.html#default\",\"classes\":\"tsd-kind-reference\"},{\"id\":58,\"kind\":4,\"name\":\"match\",\"url\":\"modules/match.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":59,\"kind\":64,\"name\":\"distance\",\"url\":\"modules/match.html#distance\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":60,\"kind\":64,\"name\":\"similarity\",\"url\":\"modules/match.html#similarity\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":61,\"kind\":64,\"name\":\"match\",\"url\":\"modules/match.html#match-1\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":62,\"kind\":4194304,\"name\":\"Descriptor\",\"url\":\"modules/match.html#Descriptor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":63,\"kind\":4194304,\"name\":\"MatchOptions\",\"url\":\"modules/match.html#MatchOptions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":64,\"kind\":4,\"name\":\"draw\",\"url\":\"modules/draw.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":65,\"kind\":64,\"name\":\"gesture\",\"url\":\"modules/draw.html#gesture\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":66,\"kind\":64,\"name\":\"face\",\"url\":\"modules/draw.html#face\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":67,\"kind\":64,\"name\":\"body\",\"url\":\"modules/draw.html#body\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":68,\"kind\":64,\"name\":\"hand\",\"url\":\"modules/draw.html#hand\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":69,\"kind\":64,\"name\":\"object\",\"url\":\"modules/draw.html#object\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":70,\"kind\":64,\"name\":\"person\",\"url\":\"modules/draw.html#person\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":71,\"kind\":64,\"name\":\"canvas\",\"url\":\"modules/draw.html#canvas\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":72,\"kind\":64,\"name\":\"all\",\"url\":\"modules/draw.html#all\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":73,\"kind\":4194304,\"name\":\"DrawOptions\",\"url\":\"modules/draw.html#DrawOptions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":74,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/draw.html#DrawOptions.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"draw.DrawOptions\"},{\"id\":75,\"kind\":1024,\"name\":\"color\",\"url\":\"modules/draw.html#DrawOptions.__type.color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":76,\"kind\":1024,\"name\":\"labelColor\",\"url\":\"modules/draw.html#DrawOptions.__type.labelColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":77,\"kind\":1024,\"name\":\"shadowColor\",\"url\":\"modules/draw.html#DrawOptions.__type.shadowColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":78,\"kind\":1024,\"name\":\"font\",\"url\":\"modules/draw.html#DrawOptions.__type.font\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":79,\"kind\":1024,\"name\":\"lineHeight\",\"url\":\"modules/draw.html#DrawOptions.__type.lineHeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":80,\"kind\":1024,\"name\":\"lineWidth\",\"url\":\"modules/draw.html#DrawOptions.__type.lineWidth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":81,\"kind\":1024,\"name\":\"pointSize\",\"url\":\"modules/draw.html#DrawOptions.__type.pointSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":82,\"kind\":1024,\"name\":\"roundRect\",\"url\":\"modules/draw.html#DrawOptions.__type.roundRect\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":83,\"kind\":1024,\"name\":\"drawPoints\",\"url\":\"modules/draw.html#DrawOptions.__type.drawPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":84,\"kind\":1024,\"name\":\"drawLabels\",\"url\":\"modules/draw.html#DrawOptions.__type.drawLabels\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":85,\"kind\":1024,\"name\":\"drawGestures\",\"url\":\"modules/draw.html#DrawOptions.__type.drawGestures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":86,\"kind\":1024,\"name\":\"drawBoxes\",\"url\":\"modules/draw.html#DrawOptions.__type.drawBoxes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":87,\"kind\":1024,\"name\":\"drawPolygons\",\"url\":\"modules/draw.html#DrawOptions.__type.drawPolygons\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":88,\"kind\":1024,\"name\":\"drawGaze\",\"url\":\"modules/draw.html#DrawOptions.__type.drawGaze\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":89,\"kind\":1024,\"name\":\"fillPolygons\",\"url\":\"modules/draw.html#DrawOptions.__type.fillPolygons\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":90,\"kind\":1024,\"name\":\"useDepth\",\"url\":\"modules/draw.html#DrawOptions.__type.useDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":91,\"kind\":1024,\"name\":\"useCurves\",\"url\":\"modules/draw.html#DrawOptions.__type.useCurves\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":92,\"kind\":32,\"name\":\"options\",\"url\":\"modules/draw.html#options\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":93,\"kind\":4,\"name\":\"models\",\"url\":\"modules/models.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":94,\"kind\":64,\"name\":\"reset\",\"url\":\"modules/models.html#reset\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":95,\"kind\":64,\"name\":\"load\",\"url\":\"modules/models.html#load\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":96,\"kind\":64,\"name\":\"validate\",\"url\":\"modules/models.html#validate\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":97,\"kind\":128,\"name\":\"Models\",\"url\":\"classes/models.Models.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":98,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/models.Models.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":99,\"kind\":1024,\"name\":\"ssrnetage\",\"url\":\"classes/models.Models.html#ssrnetage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":100,\"kind\":1024,\"name\":\"gear\",\"url\":\"classes/models.Models.html#gear\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":101,\"kind\":1024,\"name\":\"blazeposedetect\",\"url\":\"classes/models.Models.html#blazeposedetect\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":102,\"kind\":1024,\"name\":\"blazepose\",\"url\":\"classes/models.Models.html#blazepose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":103,\"kind\":1024,\"name\":\"centernet\",\"url\":\"classes/models.Models.html#centernet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":104,\"kind\":1024,\"name\":\"efficientpose\",\"url\":\"classes/models.Models.html#efficientpose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":105,\"kind\":1024,\"name\":\"mobilefacenet\",\"url\":\"classes/models.Models.html#mobilefacenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":106,\"kind\":1024,\"name\":\"emotion\",\"url\":\"classes/models.Models.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":107,\"kind\":1024,\"name\":\"facedetect\",\"url\":\"classes/models.Models.html#facedetect\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":108,\"kind\":1024,\"name\":\"faceiris\",\"url\":\"classes/models.Models.html#faceiris\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":109,\"kind\":1024,\"name\":\"facemesh\",\"url\":\"classes/models.Models.html#facemesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":110,\"kind\":1024,\"name\":\"faceres\",\"url\":\"classes/models.Models.html#faceres\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":111,\"kind\":1024,\"name\":\"ssrnetgender\",\"url\":\"classes/models.Models.html#ssrnetgender\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":112,\"kind\":1024,\"name\":\"handpose\",\"url\":\"classes/models.Models.html#handpose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":113,\"kind\":1024,\"name\":\"handskeleton\",\"url\":\"classes/models.Models.html#handskeleton\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":114,\"kind\":1024,\"name\":\"handtrack\",\"url\":\"classes/models.Models.html#handtrack\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":115,\"kind\":1024,\"name\":\"liveness\",\"url\":\"classes/models.Models.html#liveness\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":116,\"kind\":1024,\"name\":\"movenet\",\"url\":\"classes/models.Models.html#movenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":117,\"kind\":1024,\"name\":\"nanodet\",\"url\":\"classes/models.Models.html#nanodet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":118,\"kind\":1024,\"name\":\"posenet\",\"url\":\"classes/models.Models.html#posenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":119,\"kind\":1024,\"name\":\"segmentation\",\"url\":\"classes/models.Models.html#segmentation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":120,\"kind\":1024,\"name\":\"antispoof\",\"url\":\"classes/models.Models.html#antispoof\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":121,\"kind\":128,\"name\":\"Tensor\",\"url\":\"classes/Tensor.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":122,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Tensor.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":123,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/Tensor.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":124,\"kind\":1024,\"name\":\"dataId\",\"url\":\"classes/Tensor.html#dataId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":125,\"kind\":1024,\"name\":\"shape\",\"url\":\"classes/Tensor.html#shape\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":126,\"kind\":1024,\"name\":\"size\",\"url\":\"classes/Tensor.html#size\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":127,\"kind\":1024,\"name\":\"dtype\",\"url\":\"classes/Tensor.html#dtype\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":128,\"kind\":1024,\"name\":\"rankType\",\"url\":\"classes/Tensor.html#rankType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":129,\"kind\":1024,\"name\":\"kept\",\"url\":\"classes/Tensor.html#kept\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":130,\"kind\":1024,\"name\":\"scopeId\",\"url\":\"classes/Tensor.html#scopeId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":131,\"kind\":1024,\"name\":\"strides\",\"url\":\"classes/Tensor.html#strides\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":132,\"kind\":1024,\"name\":\"rank\",\"url\":\"classes/Tensor.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":133,\"kind\":2048,\"name\":\"buffer\",\"url\":\"classes/Tensor.html#buffer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":134,\"kind\":2048,\"name\":\"bufferSync\",\"url\":\"classes/Tensor.html#bufferSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":135,\"kind\":2048,\"name\":\"array\",\"url\":\"classes/Tensor.html#array\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":136,\"kind\":2048,\"name\":\"arraySync\",\"url\":\"classes/Tensor.html#arraySync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":137,\"kind\":2048,\"name\":\"data\",\"url\":\"classes/Tensor.html#data\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":138,\"kind\":2048,\"name\":\"dataToGPU\",\"url\":\"classes/Tensor.html#dataToGPU\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":139,\"kind\":2048,\"name\":\"dataSync\",\"url\":\"classes/Tensor.html#dataSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":140,\"kind\":2048,\"name\":\"bytes\",\"url\":\"classes/Tensor.html#bytes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":141,\"kind\":2048,\"name\":\"dispose\",\"url\":\"classes/Tensor.html#dispose\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":142,\"kind\":1024,\"name\":\"isDisposed\",\"url\":\"classes/Tensor.html#isDisposed\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":143,\"kind\":2048,\"name\":\"throwIfDisposed\",\"url\":\"classes/Tensor.html#throwIfDisposed\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":144,\"kind\":2048,\"name\":\"print\",\"url\":\"classes/Tensor.html#print\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":145,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Tensor.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":146,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/Tensor.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":147,\"kind\":2048,\"name\":\"variable\",\"url\":\"classes/Tensor.html#variable\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":148,\"kind\":4,\"name\":\"Tensor\",\"url\":\"modules/Tensor.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":149,\"kind\":4194304,\"name\":\"TensorLike\",\"url\":\"index.html#TensorLike\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":150,\"kind\":128,\"name\":\"GraphModel\",\"url\":\"classes/GraphModel.html\",\"classes\":\"tsd-kind-class\"},{\"id\":151,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GraphModel.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":152,\"kind\":1024,\"name\":\"modelVersion\",\"url\":\"classes/GraphModel.html#modelVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":153,\"kind\":1024,\"name\":\"inputNodes\",\"url\":\"classes/GraphModel.html#inputNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":154,\"kind\":1024,\"name\":\"outputNodes\",\"url\":\"classes/GraphModel.html#outputNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":155,\"kind\":1024,\"name\":\"inputs\",\"url\":\"classes/GraphModel.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":156,\"kind\":1024,\"name\":\"outputs\",\"url\":\"classes/GraphModel.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":157,\"kind\":1024,\"name\":\"weights\",\"url\":\"classes/GraphModel.html#weights\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":158,\"kind\":1024,\"name\":\"metadata\",\"url\":\"classes/GraphModel.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":159,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GraphModel.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":160,\"kind\":1024,\"name\":\"modelSignature\",\"url\":\"classes/GraphModel.html#modelSignature\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":161,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GraphModel.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":162,\"kind\":2048,\"name\":\"load\",\"url\":\"classes/GraphModel.html#load\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":163,\"kind\":2048,\"name\":\"loadSync\",\"url\":\"classes/GraphModel.html#loadSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":164,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/GraphModel.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":165,\"kind\":2048,\"name\":\"predict\",\"url\":\"classes/GraphModel.html#predict\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":166,\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/GraphModel.html#execute\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":167,\"kind\":2048,\"name\":\"executeAsync\",\"url\":\"classes/GraphModel.html#executeAsync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":168,\"kind\":2048,\"name\":\"getIntermediateTensors\",\"url\":\"classes/GraphModel.html#getIntermediateTensors\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":169,\"kind\":2048,\"name\":\"disposeIntermediateTensors\",\"url\":\"classes/GraphModel.html#disposeIntermediateTensors\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":170,\"kind\":2048,\"name\":\"dispose\",\"url\":\"classes/GraphModel.html#dispose\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":171,\"kind\":8,\"name\":\"Rank\",\"url\":\"enums/Rank.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":172,\"kind\":16,\"name\":\"R0\",\"url\":\"enums/Rank.html#R0\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":173,\"kind\":16,\"name\":\"R1\",\"url\":\"enums/Rank.html#R1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":174,\"kind\":16,\"name\":\"R2\",\"url\":\"enums/Rank.html#R2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":175,\"kind\":16,\"name\":\"R3\",\"url\":\"enums/Rank.html#R3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":176,\"kind\":16,\"name\":\"R4\",\"url\":\"enums/Rank.html#R4\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":177,\"kind\":16,\"name\":\"R5\",\"url\":\"enums/Rank.html#R5\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":178,\"kind\":16,\"name\":\"R6\",\"url\":\"enums/Rank.html#R6\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":179,\"kind\":256,\"name\":\"OffscreenCanvas\",\"url\":\"interfaces/OffscreenCanvas.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":180,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/OffscreenCanvas.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvas\"},{\"id\":181,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/OffscreenCanvas.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvas\"},{\"id\":182,\"kind\":2048,\"name\":\"getContext\",\"url\":\"interfaces/OffscreenCanvas.html#getContext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvas\"},{\"id\":183,\"kind\":2048,\"name\":\"convertToBlob\",\"url\":\"interfaces/OffscreenCanvas.html#convertToBlob\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvas\"},{\"id\":184,\"kind\":2048,\"name\":\"transferToImageBitmap\",\"url\":\"interfaces/OffscreenCanvas.html#transferToImageBitmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvas\"},{\"id\":185,\"kind\":2048,\"name\":\"addEventListener\",\"url\":\"interfaces/OffscreenCanvas.html#addEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvas\"},{\"id\":186,\"kind\":2048,\"name\":\"dispatchEvent\",\"url\":\"interfaces/OffscreenCanvas.html#dispatchEvent\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvas\"},{\"id\":187,\"kind\":2048,\"name\":\"removeEventListener\",\"url\":\"interfaces/OffscreenCanvas.html#removeEventListener\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvas\"},{\"id\":188,\"kind\":256,\"name\":\"OffscreenCanvasRenderingContext2D\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":189,\"kind\":1024,\"name\":\"canvas\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":190,\"kind\":2048,\"name\":\"restore\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#restore\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":191,\"kind\":2048,\"name\":\"save\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":192,\"kind\":2048,\"name\":\"getTransform\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#getTransform\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":193,\"kind\":2048,\"name\":\"resetTransform\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#resetTransform\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":194,\"kind\":2048,\"name\":\"rotate\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#rotate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":195,\"kind\":2048,\"name\":\"scale\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#scale\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":196,\"kind\":2048,\"name\":\"setTransform\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#setTransform\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":197,\"kind\":2048,\"name\":\"transform\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#transform\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":198,\"kind\":2048,\"name\":\"translate\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#translate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":199,\"kind\":1024,\"name\":\"globalAlpha\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#globalAlpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":200,\"kind\":1024,\"name\":\"globalCompositeOperation\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#globalCompositeOperation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":201,\"kind\":1024,\"name\":\"imageSmoothingEnabled\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#imageSmoothingEnabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":202,\"kind\":1024,\"name\":\"imageSmoothingQuality\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#imageSmoothingQuality\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":203,\"kind\":1024,\"name\":\"fillStyle\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#fillStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":204,\"kind\":1024,\"name\":\"strokeStyle\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#strokeStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":205,\"kind\":2048,\"name\":\"createConicGradient\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#createConicGradient\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":206,\"kind\":2048,\"name\":\"createLinearGradient\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#createLinearGradient\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":207,\"kind\":2048,\"name\":\"createPattern\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#createPattern\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":208,\"kind\":2048,\"name\":\"createRadialGradient\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#createRadialGradient\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":209,\"kind\":1024,\"name\":\"shadowBlur\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#shadowBlur\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":210,\"kind\":1024,\"name\":\"shadowColor\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#shadowColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":211,\"kind\":1024,\"name\":\"shadowOffsetX\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#shadowOffsetX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":212,\"kind\":1024,\"name\":\"shadowOffsetY\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#shadowOffsetY\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":213,\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":214,\"kind\":2048,\"name\":\"clearRect\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#clearRect\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":215,\"kind\":2048,\"name\":\"fillRect\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#fillRect\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":216,\"kind\":2048,\"name\":\"strokeRect\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#strokeRect\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":217,\"kind\":2048,\"name\":\"beginPath\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#beginPath\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":218,\"kind\":2048,\"name\":\"clip\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#clip\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":219,\"kind\":2048,\"name\":\"fill\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#fill\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":220,\"kind\":2048,\"name\":\"isPointInPath\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#isPointInPath\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":221,\"kind\":2048,\"name\":\"isPointInStroke\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#isPointInStroke\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":222,\"kind\":2048,\"name\":\"stroke\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#stroke\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":223,\"kind\":2048,\"name\":\"fillText\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#fillText\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":224,\"kind\":2048,\"name\":\"measureText\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#measureText\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":225,\"kind\":2048,\"name\":\"strokeText\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#strokeText\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":226,\"kind\":2048,\"name\":\"drawImage\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#drawImage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":227,\"kind\":2048,\"name\":\"createImageData\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#createImageData\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":228,\"kind\":2048,\"name\":\"getImageData\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#getImageData\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":229,\"kind\":2048,\"name\":\"putImageData\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#putImageData\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":230,\"kind\":1024,\"name\":\"lineCap\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#lineCap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":231,\"kind\":1024,\"name\":\"lineDashOffset\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#lineDashOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":232,\"kind\":1024,\"name\":\"lineJoin\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#lineJoin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":233,\"kind\":1024,\"name\":\"lineWidth\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#lineWidth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":234,\"kind\":1024,\"name\":\"miterLimit\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#miterLimit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":235,\"kind\":2048,\"name\":\"getLineDash\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#getLineDash\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":236,\"kind\":2048,\"name\":\"setLineDash\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#setLineDash\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":237,\"kind\":1024,\"name\":\"direction\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":238,\"kind\":1024,\"name\":\"font\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#font\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":239,\"kind\":1024,\"name\":\"textAlign\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#textAlign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":240,\"kind\":1024,\"name\":\"textBaseline\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#textBaseline\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":241,\"kind\":2048,\"name\":\"arc\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#arc\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":242,\"kind\":2048,\"name\":\"arcTo\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#arcTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":243,\"kind\":2048,\"name\":\"bezierCurveTo\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#bezierCurveTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":244,\"kind\":2048,\"name\":\"closePath\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#closePath\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":245,\"kind\":2048,\"name\":\"ellipse\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#ellipse\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":246,\"kind\":2048,\"name\":\"lineTo\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#lineTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":247,\"kind\":2048,\"name\":\"moveTo\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#moveTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":248,\"kind\":2048,\"name\":\"quadraticCurveTo\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#quadraticCurveTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":249,\"kind\":2048,\"name\":\"rect\",\"url\":\"interfaces/OffscreenCanvasRenderingContext2D.html#rect\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"OffscreenCanvasRenderingContext2D\"},{\"id\":250,\"kind\":256,\"name\":\"CanvasDrawImage\",\"url\":\"interfaces/CanvasDrawImage.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":251,\"kind\":2048,\"name\":\"drawImage\",\"url\":\"interfaces/CanvasDrawImage.html#drawImage\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CanvasDrawImage\"},{\"id\":252,\"kind\":16777216,\"name\":\"DrawOptions\",\"url\":\"index.html#DrawOptions\",\"classes\":\"tsd-kind-reference\"},{\"id\":253,\"kind\":16777216,\"name\":\"Descriptor\",\"url\":\"index.html#Descriptor\",\"classes\":\"tsd-kind-reference\"},{\"id\":254,\"kind\":4194304,\"name\":\"Box\",\"url\":\"index.html#Box\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":255,\"kind\":4194304,\"name\":\"Point\",\"url\":\"index.html#Point\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":256,\"kind\":16777216,\"name\":\"Models\",\"url\":\"index.html#Models\",\"classes\":\"tsd-kind-reference\"},{\"id\":257,\"kind\":128,\"name\":\"Env\",\"url\":\"classes/Env.html\",\"classes\":\"tsd-kind-class\"},{\"id\":258,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Env.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":259,\"kind\":1024,\"name\":\"browser\",\"url\":\"classes/Env.html#browser\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":260,\"kind\":1024,\"name\":\"node\",\"url\":\"classes/Env.html#node\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":261,\"kind\":1024,\"name\":\"worker\",\"url\":\"classes/Env.html#worker\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":262,\"kind\":1024,\"name\":\"platform\",\"url\":\"classes/Env.html#platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":263,\"kind\":1024,\"name\":\"agent\",\"url\":\"classes/Env.html#agent\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":264,\"kind\":1024,\"name\":\"backends\",\"url\":\"classes/Env.html#backends\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":265,\"kind\":1024,\"name\":\"initial\",\"url\":\"classes/Env.html#initial\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":266,\"kind\":1024,\"name\":\"filter\",\"url\":\"classes/Env.html#filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":267,\"kind\":1024,\"name\":\"tfjs\",\"url\":\"classes/Env.html#tfjs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":268,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":269,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Env.html#__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":270,\"kind\":1024,\"name\":\"offscreen\",\"url\":\"classes/Env.html#offscreen\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":271,\"kind\":1024,\"name\":\"perfadd\",\"url\":\"classes/Env.html#perfadd\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":272,\"kind\":1024,\"name\":\"wasm\",\"url\":\"classes/Env.html#wasm\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":273,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":274,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-2.supported\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":275,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-2.backend\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":276,\"kind\":1024,\"name\":\"simd\",\"url\":\"classes/Env.html#__type-2.simd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":277,\"kind\":1024,\"name\":\"multithread\",\"url\":\"classes/Env.html#__type-2.multithread\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":278,\"kind\":1024,\"name\":\"webgl\",\"url\":\"classes/Env.html#webgl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":279,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":280,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-3.supported-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":281,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-3.backend-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":282,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Env.html#__type-3.version-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":283,\"kind\":1024,\"name\":\"renderer\",\"url\":\"classes/Env.html#__type-3.renderer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":284,\"kind\":1024,\"name\":\"webgpu\",\"url\":\"classes/Env.html#webgpu\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":285,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":286,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-4.supported-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":287,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-4.backend-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":288,\"kind\":1024,\"name\":\"adapter\",\"url\":\"classes/Env.html#__type-4.adapter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":289,\"kind\":1024,\"name\":\"cpu\",\"url\":\"classes/Env.html#cpu\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":290,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":291,\"kind\":1024,\"name\":\"model\",\"url\":\"classes/Env.html#__type.model\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":292,\"kind\":1024,\"name\":\"flags\",\"url\":\"classes/Env.html#__type.flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":293,\"kind\":1024,\"name\":\"kernels\",\"url\":\"classes/Env.html#kernels\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":294,\"kind\":1024,\"name\":\"Canvas\",\"url\":\"classes/Env.html#Canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":295,\"kind\":1024,\"name\":\"Image\",\"url\":\"classes/Env.html#Image\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":296,\"kind\":1024,\"name\":\"ImageData\",\"url\":\"classes/Env.html#ImageData\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":297,\"kind\":2048,\"name\":\"updateBackend\",\"url\":\"classes/Env.html#updateBackend\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":298,\"kind\":2048,\"name\":\"updateCPU\",\"url\":\"classes/Env.html#updateCPU\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":299,\"kind\":4194304,\"name\":\"FaceGesture\",\"url\":\"index.html#FaceGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":300,\"kind\":4194304,\"name\":\"BodyGesture\",\"url\":\"index.html#BodyGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":301,\"kind\":4194304,\"name\":\"HandGesture\",\"url\":\"index.html#HandGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":302,\"kind\":4194304,\"name\":\"IrisGesture\",\"url\":\"index.html#IrisGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":303,\"kind\":4194304,\"name\":\"Emotion\",\"url\":\"index.html#Emotion\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":304,\"kind\":4194304,\"name\":\"Finger\",\"url\":\"index.html#Finger\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":305,\"kind\":4194304,\"name\":\"FingerCurl\",\"url\":\"index.html#FingerCurl\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":306,\"kind\":4194304,\"name\":\"FingerDirection\",\"url\":\"index.html#FingerDirection\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":307,\"kind\":4194304,\"name\":\"HandType\",\"url\":\"index.html#HandType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":308,\"kind\":4194304,\"name\":\"Gender\",\"url\":\"index.html#Gender\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":309,\"kind\":4194304,\"name\":\"Race\",\"url\":\"index.html#Race\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":310,\"kind\":4194304,\"name\":\"FaceLandmark\",\"url\":\"index.html#FaceLandmark\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":311,\"kind\":4194304,\"name\":\"BodyLandmark\",\"url\":\"index.html#BodyLandmark\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":312,\"kind\":4194304,\"name\":\"BodyAnnotation\",\"url\":\"index.html#BodyAnnotation\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":313,\"kind\":4194304,\"name\":\"ObjectType\",\"url\":\"index.html#ObjectType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":314,\"kind\":32,\"name\":\"env\",\"url\":\"index.html#env\",\"classes\":\"tsd-kind-variable\"},{\"id\":315,\"kind\":4194304,\"name\":\"Events\",\"url\":\"index.html#Events\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":316,\"kind\":4194304,\"name\":\"AnyCanvas\",\"url\":\"index.html#AnyCanvas\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":317,\"kind\":4194304,\"name\":\"AnyImage\",\"url\":\"index.html#AnyImage\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":318,\"kind\":4194304,\"name\":\"AnyVideo\",\"url\":\"index.html#AnyVideo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":319,\"kind\":4194304,\"name\":\"ImageObjects\",\"url\":\"index.html#ImageObjects\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":320,\"kind\":4194304,\"name\":\"ExternalCanvas\",\"url\":\"index.html#ExternalCanvas\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":321,\"kind\":4194304,\"name\":\"Input\",\"url\":\"index.html#Input\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":322,\"kind\":256,\"name\":\"GenericConfig\",\"url\":\"interfaces/GenericConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":323,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/GenericConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":324,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/GenericConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":325,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/GenericConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":326,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/GenericConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":327,\"kind\":256,\"name\":\"FaceDetectorConfig\",\"url\":\"interfaces/FaceDetectorConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":328,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/FaceDetectorConfig.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":329,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/FaceDetectorConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":330,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceDetectorConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":331,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/FaceDetectorConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":332,\"kind\":1024,\"name\":\"mask\",\"url\":\"interfaces/FaceDetectorConfig.html#mask\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":333,\"kind\":1024,\"name\":\"return\",\"url\":\"interfaces/FaceDetectorConfig.html#return\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":334,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceDetectorConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":335,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceDetectorConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":336,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceDetectorConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":337,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceDetectorConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":338,\"kind\":256,\"name\":\"FaceMeshConfig\",\"url\":\"interfaces/FaceMeshConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":339,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceMeshConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":340,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceMeshConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":341,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceMeshConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":342,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceMeshConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":343,\"kind\":256,\"name\":\"FaceIrisConfig\",\"url\":\"interfaces/FaceIrisConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":344,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceIrisConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":345,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceIrisConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":346,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceIrisConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":347,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceIrisConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":348,\"kind\":256,\"name\":\"FaceDescriptionConfig\",\"url\":\"interfaces/FaceDescriptionConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":349,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceDescriptionConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":350,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceDescriptionConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":351,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceDescriptionConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":352,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceDescriptionConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":353,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceDescriptionConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":354,\"kind\":256,\"name\":\"FaceEmotionConfig\",\"url\":\"interfaces/FaceEmotionConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":355,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceEmotionConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceEmotionConfig\"},{\"id\":356,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceEmotionConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":357,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceEmotionConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":358,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceEmotionConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":359,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceEmotionConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":360,\"kind\":256,\"name\":\"FaceAntiSpoofConfig\",\"url\":\"interfaces/FaceAntiSpoofConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":361,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":362,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":363,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":364,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":365,\"kind\":256,\"name\":\"FaceLivenessConfig\",\"url\":\"interfaces/FaceLivenessConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":366,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceLivenessConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":367,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceLivenessConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":368,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceLivenessConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":369,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceLivenessConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":370,\"kind\":256,\"name\":\"FaceConfig\",\"url\":\"interfaces/FaceConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":371,\"kind\":1024,\"name\":\"detector\",\"url\":\"interfaces/FaceConfig.html#detector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":372,\"kind\":1024,\"name\":\"mesh\",\"url\":\"interfaces/FaceConfig.html#mesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":373,\"kind\":1024,\"name\":\"iris\",\"url\":\"interfaces/FaceConfig.html#iris\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":374,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/FaceConfig.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":375,\"kind\":1024,\"name\":\"emotion\",\"url\":\"interfaces/FaceConfig.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":376,\"kind\":1024,\"name\":\"antispoof\",\"url\":\"interfaces/FaceConfig.html#antispoof\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":377,\"kind\":1024,\"name\":\"liveness\",\"url\":\"interfaces/FaceConfig.html#liveness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":378,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":379,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":380,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":381,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":382,\"kind\":256,\"name\":\"BodyConfig\",\"url\":\"interfaces/BodyConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":383,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/BodyConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyConfig\"},{\"id\":384,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/BodyConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyConfig\"},{\"id\":385,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/BodyConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":386,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/BodyConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":387,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/BodyConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":388,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/BodyConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":389,\"kind\":256,\"name\":\"HandConfig\",\"url\":\"interfaces/HandConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":390,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/HandConfig.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":391,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/HandConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":392,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/HandConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":393,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/HandConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":394,\"kind\":1024,\"name\":\"landmarks\",\"url\":\"interfaces/HandConfig.html#landmarks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":395,\"kind\":1024,\"name\":\"detector\",\"url\":\"interfaces/HandConfig.html#detector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":396,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/HandConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":397,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#__type.modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HandConfig.__type\"},{\"id\":398,\"kind\":1024,\"name\":\"skeleton\",\"url\":\"interfaces/HandConfig.html#skeleton\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":399,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/HandConfig.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":400,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#__type-1.modelPath-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HandConfig.__type\"},{\"id\":401,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/HandConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":402,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#modelPath-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":403,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/HandConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":404,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/HandConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":405,\"kind\":256,\"name\":\"ObjectConfig\",\"url\":\"interfaces/ObjectConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":406,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/ObjectConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":407,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/ObjectConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":408,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/ObjectConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":409,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/ObjectConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":410,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/ObjectConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":411,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/ObjectConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":412,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/ObjectConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":413,\"kind\":256,\"name\":\"SegmentationConfig\",\"url\":\"interfaces/SegmentationConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":414,\"kind\":1024,\"name\":\"blur\",\"url\":\"interfaces/SegmentationConfig.html#blur\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SegmentationConfig\"},{\"id\":415,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/SegmentationConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":416,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/SegmentationConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":417,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/SegmentationConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":418,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/SegmentationConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":419,\"kind\":256,\"name\":\"FilterConfig\",\"url\":\"interfaces/FilterConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":420,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FilterConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":421,\"kind\":1024,\"name\":\"equalization\",\"url\":\"interfaces/FilterConfig.html#equalization\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":422,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/FilterConfig.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":423,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/FilterConfig.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":424,\"kind\":1024,\"name\":\"return\",\"url\":\"interfaces/FilterConfig.html#return\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":425,\"kind\":1024,\"name\":\"flip\",\"url\":\"interfaces/FilterConfig.html#flip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":426,\"kind\":1024,\"name\":\"brightness\",\"url\":\"interfaces/FilterConfig.html#brightness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":427,\"kind\":1024,\"name\":\"contrast\",\"url\":\"interfaces/FilterConfig.html#contrast\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":428,\"kind\":1024,\"name\":\"sharpness\",\"url\":\"interfaces/FilterConfig.html#sharpness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":429,\"kind\":1024,\"name\":\"blur\",\"url\":\"interfaces/FilterConfig.html#blur\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":430,\"kind\":1024,\"name\":\"saturation\",\"url\":\"interfaces/FilterConfig.html#saturation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":431,\"kind\":1024,\"name\":\"hue\",\"url\":\"interfaces/FilterConfig.html#hue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":432,\"kind\":1024,\"name\":\"negative\",\"url\":\"interfaces/FilterConfig.html#negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":433,\"kind\":1024,\"name\":\"sepia\",\"url\":\"interfaces/FilterConfig.html#sepia\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":434,\"kind\":1024,\"name\":\"vintage\",\"url\":\"interfaces/FilterConfig.html#vintage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":435,\"kind\":1024,\"name\":\"kodachrome\",\"url\":\"interfaces/FilterConfig.html#kodachrome\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":436,\"kind\":1024,\"name\":\"technicolor\",\"url\":\"interfaces/FilterConfig.html#technicolor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":437,\"kind\":1024,\"name\":\"polaroid\",\"url\":\"interfaces/FilterConfig.html#polaroid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":438,\"kind\":1024,\"name\":\"pixelate\",\"url\":\"interfaces/FilterConfig.html#pixelate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":439,\"kind\":256,\"name\":\"GestureConfig\",\"url\":\"interfaces/GestureConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":440,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/GestureConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GestureConfig\"},{\"id\":441,\"kind\":4194304,\"name\":\"BackendType\",\"url\":\"index.html#BackendType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":442,\"kind\":4194304,\"name\":\"WarmupType\",\"url\":\"index.html#WarmupType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":443,\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/Config.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":444,\"kind\":1024,\"name\":\"backend\",\"url\":\"interfaces/Config.html#backend\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":445,\"kind\":1024,\"name\":\"wasmPath\",\"url\":\"interfaces/Config.html#wasmPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":446,\"kind\":1024,\"name\":\"wasmPlatformFetch\",\"url\":\"interfaces/Config.html#wasmPlatformFetch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":447,\"kind\":1024,\"name\":\"debug\",\"url\":\"interfaces/Config.html#debug\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":448,\"kind\":1024,\"name\":\"async\",\"url\":\"interfaces/Config.html#async\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":449,\"kind\":1024,\"name\":\"warmup\",\"url\":\"interfaces/Config.html#warmup\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":450,\"kind\":1024,\"name\":\"modelBasePath\",\"url\":\"interfaces/Config.html#modelBasePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":451,\"kind\":1024,\"name\":\"cacheModels\",\"url\":\"interfaces/Config.html#cacheModels\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":452,\"kind\":1024,\"name\":\"cacheSensitivity\",\"url\":\"interfaces/Config.html#cacheSensitivity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":453,\"kind\":1024,\"name\":\"deallocate\",\"url\":\"interfaces/Config.html#deallocate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":454,\"kind\":1024,\"name\":\"skipAllowed\",\"url\":\"interfaces/Config.html#skipAllowed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":455,\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/Config.html#filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":456,\"kind\":1024,\"name\":\"gesture\",\"url\":\"interfaces/Config.html#gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":457,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/Config.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":458,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/Config.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":459,\"kind\":1024,\"name\":\"hand\",\"url\":\"interfaces/Config.html#hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":460,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/Config.html#object\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":461,\"kind\":1024,\"name\":\"segmentation\",\"url\":\"interfaces/Config.html#segmentation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":462,\"kind\":32,\"name\":\"defaults\",\"url\":\"index.html#defaults\",\"classes\":\"tsd-kind-variable\"},{\"id\":463,\"kind\":256,\"name\":\"FaceResult\",\"url\":\"interfaces/FaceResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":464,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/FaceResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":465,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/FaceResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":466,\"kind\":1024,\"name\":\"boxScore\",\"url\":\"interfaces/FaceResult.html#boxScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":467,\"kind\":1024,\"name\":\"faceScore\",\"url\":\"interfaces/FaceResult.html#faceScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":468,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/FaceResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":469,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/FaceResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":470,\"kind\":1024,\"name\":\"mesh\",\"url\":\"interfaces/FaceResult.html#mesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":471,\"kind\":1024,\"name\":\"meshRaw\",\"url\":\"interfaces/FaceResult.html#meshRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":472,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/FaceResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":473,\"kind\":1024,\"name\":\"age\",\"url\":\"interfaces/FaceResult.html#age\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":474,\"kind\":1024,\"name\":\"gender\",\"url\":\"interfaces/FaceResult.html#gender\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":475,\"kind\":1024,\"name\":\"genderScore\",\"url\":\"interfaces/FaceResult.html#genderScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":476,\"kind\":1024,\"name\":\"emotion\",\"url\":\"interfaces/FaceResult.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":477,\"kind\":1024,\"name\":\"race\",\"url\":\"interfaces/FaceResult.html#race\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":478,\"kind\":1024,\"name\":\"embedding\",\"url\":\"interfaces/FaceResult.html#embedding\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":479,\"kind\":1024,\"name\":\"iris\",\"url\":\"interfaces/FaceResult.html#iris\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":480,\"kind\":1024,\"name\":\"real\",\"url\":\"interfaces/FaceResult.html#real\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":481,\"kind\":1024,\"name\":\"live\",\"url\":\"interfaces/FaceResult.html#live\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":482,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/FaceResult.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":483,\"kind\":1024,\"name\":\"tensor\",\"url\":\"interfaces/FaceResult.html#tensor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":484,\"kind\":4194304,\"name\":\"BodyLandmarkPoseNet\",\"url\":\"index.html#BodyLandmarkPoseNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":485,\"kind\":4194304,\"name\":\"BodyLandmarkMoveNet\",\"url\":\"index.html#BodyLandmarkMoveNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":486,\"kind\":4194304,\"name\":\"BodyLandmarkEfficientNet\",\"url\":\"index.html#BodyLandmarkEfficientNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":487,\"kind\":4194304,\"name\":\"BodyLandmarkBlazePose\",\"url\":\"index.html#BodyLandmarkBlazePose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":488,\"kind\":4194304,\"name\":\"BodyAnnotationBlazePose\",\"url\":\"index.html#BodyAnnotationBlazePose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":489,\"kind\":4194304,\"name\":\"BodyAnnotationEfficientPose\",\"url\":\"index.html#BodyAnnotationEfficientPose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":490,\"kind\":256,\"name\":\"BodyKeypoint\",\"url\":\"interfaces/BodyKeypoint.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":491,\"kind\":1024,\"name\":\"part\",\"url\":\"interfaces/BodyKeypoint.html#part\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":492,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/BodyKeypoint.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":493,\"kind\":1024,\"name\":\"positionRaw\",\"url\":\"interfaces/BodyKeypoint.html#positionRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":494,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/BodyKeypoint.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":495,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/BodyKeypoint.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":496,\"kind\":256,\"name\":\"BodyResult\",\"url\":\"interfaces/BodyResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":497,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/BodyResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":498,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/BodyResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":499,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/BodyResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":500,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/BodyResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":501,\"kind\":1024,\"name\":\"keypoints\",\"url\":\"interfaces/BodyResult.html#keypoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":502,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/BodyResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":503,\"kind\":256,\"name\":\"HandResult\",\"url\":\"interfaces/HandResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":504,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/HandResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":505,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/HandResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":506,\"kind\":1024,\"name\":\"boxScore\",\"url\":\"interfaces/HandResult.html#boxScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":507,\"kind\":1024,\"name\":\"fingerScore\",\"url\":\"interfaces/HandResult.html#fingerScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":508,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/HandResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":509,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/HandResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":510,\"kind\":1024,\"name\":\"keypoints\",\"url\":\"interfaces/HandResult.html#keypoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":511,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/HandResult.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":512,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/HandResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":513,\"kind\":1024,\"name\":\"landmarks\",\"url\":\"interfaces/HandResult.html#landmarks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":514,\"kind\":256,\"name\":\"ObjectResult\",\"url\":\"interfaces/ObjectResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":515,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ObjectResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":516,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/ObjectResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":517,\"kind\":1024,\"name\":\"class\",\"url\":\"interfaces/ObjectResult.html#class\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":518,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ObjectResult.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":519,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/ObjectResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":520,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/ObjectResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":521,\"kind\":4194304,\"name\":\"GestureResult\",\"url\":\"index.html#GestureResult\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":522,\"kind\":256,\"name\":\"PersonResult\",\"url\":\"interfaces/PersonResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":523,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PersonResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":524,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/PersonResult.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":525,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/PersonResult.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":526,\"kind\":1024,\"name\":\"hands\",\"url\":\"interfaces/PersonResult.html#hands\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":527,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PersonResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":528,\"kind\":1024,\"name\":\"left\",\"url\":\"interfaces/PersonResult.html#__type.left\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PersonResult.__type\"},{\"id\":529,\"kind\":1024,\"name\":\"right\",\"url\":\"interfaces/PersonResult.html#__type.right\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PersonResult.__type\"},{\"id\":530,\"kind\":1024,\"name\":\"gestures\",\"url\":\"interfaces/PersonResult.html#gestures\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":531,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/PersonResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":532,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/PersonResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":533,\"kind\":256,\"name\":\"Result\",\"url\":\"interfaces/Result.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":534,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/Result.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":535,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/Result.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":536,\"kind\":1024,\"name\":\"hand\",\"url\":\"interfaces/Result.html#hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":537,\"kind\":1024,\"name\":\"gesture\",\"url\":\"interfaces/Result.html#gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":538,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/Result.html#object\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":539,\"kind\":1024,\"name\":\"performance\",\"url\":\"interfaces/Result.html#performance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":540,\"kind\":1024,\"name\":\"canvas\",\"url\":\"interfaces/Result.html#canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":541,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/Result.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":542,\"kind\":1024,\"name\":\"persons\",\"url\":\"interfaces/Result.html#persons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":543,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/Result.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,26.501]],[\"parent/0\",[]],[\"name/1\",[1,45.96]],[\"parent/1\",[0,2.487]],[\"name/2\",[2,50.48]],[\"parent/2\",[0,2.487]],[\"name/3\",[3,32.804]],[\"parent/3\",[0,2.487]],[\"name/4\",[4,37.751]],[\"parent/4\",[0,2.487]],[\"name/5\",[5,58.953]],[\"parent/5\",[0,2.487]],[\"name/6\",[6,58.953]],[\"parent/6\",[0,2.487]],[\"name/7\",[7,31.021]],[\"parent/7\",[0,2.487]],[\"name/8\",[8,28.831]],[\"parent/8\",[9,3.126]],[\"name/9\",[10,44.29]],[\"parent/9\",[9,3.126]],[\"name/10\",[11,58.953]],[\"parent/10\",[0,2.487]],[\"name/11\",[12,28.831]],[\"parent/11\",[0,2.487]],[\"name/12\",[13,37.751]],[\"parent/12\",[0,2.487]],[\"name/13\",[7,31.021]],[\"parent/13\",[0,2.487]],[\"name/14\",[10,44.29]],[\"parent/14\",[9,3.126]],[\"name/15\",[7,31.021]],[\"parent/15\",[9,3.126]],[\"name/16\",[14,45.96]],[\"parent/16\",[9,3.126]],[\"name/17\",[7,31.021]],[\"parent/17\",[9,3.126]],[\"name/18\",[15,45.96]],[\"parent/18\",[9,3.126]],[\"name/19\",[7,31.021]],[\"parent/19\",[9,3.126]],[\"name/20\",[16,47.967]],[\"parent/20\",[9,3.126]],[\"name/21\",[7,31.021]],[\"parent/21\",[9,3.126]],[\"name/22\",[17,47.967]],[\"parent/22\",[9,3.126]],[\"name/23\",[7,31.021]],[\"parent/23\",[9,3.126]],[\"name/24\",[18,47.967]],[\"parent/24\",[9,3.126]],[\"name/25\",[7,31.021]],[\"parent/25\",[9,3.126]],[\"name/26\",[19,53.845]],[\"parent/26\",[9,3.126]],[\"name/27\",[7,31.021]],[\"parent/27\",[9,3.126]],[\"name/28\",[20,53.845]],[\"parent/28\",[9,3.126]],[\"name/29\",[7,31.021]],[\"parent/29\",[9,3.126]],[\"name/30\",[21,53.845]],[\"parent/30\",[9,3.126]],[\"name/31\",[22,53.845]],[\"parent/31\",[0,2.487]],[\"name/32\",[23,58.953]],[\"parent/32\",[0,2.487]],[\"name/33\",[24,58.953]],[\"parent/33\",[0,2.487]],[\"name/34\",[25,53.845]],[\"parent/34\",[0,2.487]],[\"name/35\",[26,58.953]],[\"parent/35\",[0,2.487]],[\"name/36\",[27,58.953]],[\"parent/36\",[0,2.487]],[\"name/37\",[28,53.845]],[\"parent/37\",[0,2.487]],[\"name/38\",[29,53.845]],[\"parent/38\",[0,2.487]],[\"name/39\",[30,53.845]],[\"parent/39\",[0,2.487]],[\"name/40\",[7,31.021]],[\"parent/40\",[0,2.487]],[\"name/41\",[31,50.48]],[\"parent/41\",[0,2.487]],[\"name/42\",[7,31.021]],[\"parent/42\",[0,2.487]],[\"name/43\",[32,41.607]],[\"parent/43\",[0,2.487]],[\"name/44\",[7,31.021]],[\"parent/44\",[0,2.487]],[\"name/45\",[33,58.953]],[\"parent/45\",[0,2.487]],[\"name/46\",[34,53.845]],[\"parent/46\",[0,2.487]],[\"name/47\",[35,50.48]],[\"parent/47\",[0,2.487]],[\"name/48\",[36,58.953]],[\"parent/48\",[0,2.487]],[\"name/49\",[37,58.953]],[\"parent/49\",[0,2.487]],[\"name/50\",[38,58.953]],[\"parent/50\",[0,2.487]],[\"name/51\",[39,50.48]],[\"parent/51\",[0,2.487]],[\"name/52\",[40,58.953]],[\"parent/52\",[0,2.487]],[\"name/53\",[41,58.953]],[\"parent/53\",[0,2.487]],[\"name/54\",[42,53.845]],[\"parent/54\",[0,2.487]],[\"name/55\",[43,58.953]],[\"parent/55\",[0,2.487]],[\"name/56\",[44,58.953]],[\"parent/56\",[0,2.487]],[\"name/57\",[45,58.953]],[\"parent/57\",[]],[\"name/58\",[32,41.607]],[\"parent/58\",[]],[\"name/59\",[31,50.48]],[\"parent/59\",[32,3.905]],[\"name/60\",[30,53.845]],[\"parent/60\",[32,3.905]],[\"name/61\",[32,41.607]],[\"parent/61\",[32,3.905]],[\"name/62\",[46,53.845]],[\"parent/62\",[32,3.905]],[\"name/63\",[47,58.953]],[\"parent/63\",[32,3.905]],[\"name/64\",[13,37.751]],[\"parent/64\",[]],[\"name/65\",[17,47.967]],[\"parent/65\",[13,3.543]],[\"name/66\",[14,45.96]],[\"parent/66\",[13,3.543]],[\"name/67\",[15,45.96]],[\"parent/67\",[13,3.543]],[\"name/68\",[16,47.967]],[\"parent/68\",[13,3.543]],[\"name/69\",[18,47.967]],[\"parent/69\",[13,3.543]],[\"name/70\",[19,53.845]],[\"parent/70\",[13,3.543]],[\"name/71\",[10,44.29]],[\"parent/71\",[13,3.543]],[\"name/72\",[20,53.845]],[\"parent/72\",[13,3.543]],[\"name/73\",[48,53.845]],[\"parent/73\",[13,3.543]],[\"name/74\",[7,31.021]],[\"parent/74\",[49,5.533]],[\"name/75\",[50,58.953]],[\"parent/75\",[51,3.227]],[\"name/76\",[52,58.953]],[\"parent/76\",[51,3.227]],[\"name/77\",[53,53.845]],[\"parent/77\",[51,3.227]],[\"name/78\",[54,53.845]],[\"parent/78\",[51,3.227]],[\"name/79\",[55,58.953]],[\"parent/79\",[51,3.227]],[\"name/80\",[56,53.845]],[\"parent/80\",[51,3.227]],[\"name/81\",[57,58.953]],[\"parent/81\",[51,3.227]],[\"name/82\",[58,58.953]],[\"parent/82\",[51,3.227]],[\"name/83\",[59,58.953]],[\"parent/83\",[51,3.227]],[\"name/84\",[60,58.953]],[\"parent/84\",[51,3.227]],[\"name/85\",[61,58.953]],[\"parent/85\",[51,3.227]],[\"name/86\",[62,58.953]],[\"parent/86\",[51,3.227]],[\"name/87\",[63,58.953]],[\"parent/87\",[51,3.227]],[\"name/88\",[64,58.953]],[\"parent/88\",[51,3.227]],[\"name/89\",[65,58.953]],[\"parent/89\",[51,3.227]],[\"name/90\",[66,58.953]],[\"parent/90\",[51,3.227]],[\"name/91\",[67,58.953]],[\"parent/91\",[51,3.227]],[\"name/92\",[21,53.845]],[\"parent/92\",[13,3.543]],[\"name/93\",[68,42.859]],[\"parent/93\",[]],[\"name/94\",[28,53.845]],[\"parent/94\",[68,4.023]],[\"name/95\",[39,50.48]],[\"parent/95\",[68,4.023]],[\"name/96\",[29,53.845]],[\"parent/96\",[68,4.023]],[\"name/97\",[68,42.859]],[\"parent/97\",[68,4.023]],[\"name/98\",[1,45.96]],[\"parent/98\",[69,2.951]],[\"name/99\",[70,58.953]],[\"parent/99\",[69,2.951]],[\"name/100\",[71,58.953]],[\"parent/100\",[69,2.951]],[\"name/101\",[72,58.953]],[\"parent/101\",[69,2.951]],[\"name/102\",[73,58.953]],[\"parent/102\",[69,2.951]],[\"name/103\",[74,58.953]],[\"parent/103\",[69,2.951]],[\"name/104\",[75,58.953]],[\"parent/104\",[69,2.951]],[\"name/105\",[76,58.953]],[\"parent/105\",[69,2.951]],[\"name/106\",[77,47.967]],[\"parent/106\",[69,2.951]],[\"name/107\",[78,58.953]],[\"parent/107\",[69,2.951]],[\"name/108\",[79,58.953]],[\"parent/108\",[69,2.951]],[\"name/109\",[80,58.953]],[\"parent/109\",[69,2.951]],[\"name/110\",[81,58.953]],[\"parent/110\",[69,2.951]],[\"name/111\",[82,58.953]],[\"parent/111\",[69,2.951]],[\"name/112\",[83,58.953]],[\"parent/112\",[69,2.951]],[\"name/113\",[84,58.953]],[\"parent/113\",[69,2.951]],[\"name/114\",[85,58.953]],[\"parent/114\",[69,2.951]],[\"name/115\",[86,53.845]],[\"parent/115\",[69,2.951]],[\"name/116\",[87,58.953]],[\"parent/116\",[69,2.951]],[\"name/117\",[88,58.953]],[\"parent/117\",[69,2.951]],[\"name/118\",[89,58.953]],[\"parent/118\",[69,2.951]],[\"name/119\",[35,50.48]],[\"parent/119\",[69,2.951]],[\"name/120\",[90,53.845]],[\"parent/120\",[69,2.951]],[\"name/121\",[8,28.831]],[\"parent/121\",[]],[\"name/122\",[1,45.96]],[\"parent/122\",[8,2.706]],[\"name/123\",[91,44.29]],[\"parent/123\",[8,2.706]],[\"name/124\",[92,58.953]],[\"parent/124\",[8,2.706]],[\"name/125\",[93,58.953]],[\"parent/125\",[8,2.706]],[\"name/126\",[94,58.953]],[\"parent/126\",[8,2.706]],[\"name/127\",[95,58.953]],[\"parent/127\",[8,2.706]],[\"name/128\",[96,58.953]],[\"parent/128\",[8,2.706]],[\"name/129\",[97,58.953]],[\"parent/129\",[8,2.706]],[\"name/130\",[98,58.953]],[\"parent/130\",[8,2.706]],[\"name/131\",[99,58.953]],[\"parent/131\",[8,2.706]],[\"name/132\",[100,40.495]],[\"parent/132\",[8,2.706]],[\"name/133\",[101,58.953]],[\"parent/133\",[8,2.706]],[\"name/134\",[102,58.953]],[\"parent/134\",[8,2.706]],[\"name/135\",[103,58.953]],[\"parent/135\",[8,2.706]],[\"name/136\",[104,58.953]],[\"parent/136\",[8,2.706]],[\"name/137\",[105,58.953]],[\"parent/137\",[8,2.706]],[\"name/138\",[106,58.953]],[\"parent/138\",[8,2.706]],[\"name/139\",[107,58.953]],[\"parent/139\",[8,2.706]],[\"name/140\",[108,58.953]],[\"parent/140\",[8,2.706]],[\"name/141\",[109,53.845]],[\"parent/141\",[8,2.706]],[\"name/142\",[110,58.953]],[\"parent/142\",[8,2.706]],[\"name/143\",[111,58.953]],[\"parent/143\",[8,2.706]],[\"name/144\",[112,58.953]],[\"parent/144\",[8,2.706]],[\"name/145\",[113,58.953]],[\"parent/145\",[8,2.706]],[\"name/146\",[114,58.953]],[\"parent/146\",[8,2.706]],[\"name/147\",[115,58.953]],[\"parent/147\",[8,2.706]],[\"name/148\",[8,28.831]],[\"parent/148\",[]],[\"name/149\",[116,58.953]],[\"parent/149\",[]],[\"name/150\",[117,32.327]],[\"parent/150\",[]],[\"name/151\",[1,45.96]],[\"parent/151\",[117,3.034]],[\"name/152\",[118,58.953]],[\"parent/152\",[117,3.034]],[\"name/153\",[119,58.953]],[\"parent/153\",[117,3.034]],[\"name/154\",[120,58.953]],[\"parent/154\",[117,3.034]],[\"name/155\",[121,58.953]],[\"parent/155\",[117,3.034]],[\"name/156\",[122,58.953]],[\"parent/156\",[117,3.034]],[\"name/157\",[123,58.953]],[\"parent/157\",[117,3.034]],[\"name/158\",[124,58.953]],[\"parent/158\",[117,3.034]],[\"name/159\",[7,31.021]],[\"parent/159\",[117,3.034]],[\"name/160\",[125,58.953]],[\"parent/160\",[117,3.034]],[\"name/161\",[7,31.021]],[\"parent/161\",[117,3.034]],[\"name/162\",[39,50.48]],[\"parent/162\",[117,3.034]],[\"name/163\",[126,58.953]],[\"parent/163\",[117,3.034]],[\"name/164\",[127,53.845]],[\"parent/164\",[117,3.034]],[\"name/165\",[128,58.953]],[\"parent/165\",[117,3.034]],[\"name/166\",[129,58.953]],[\"parent/166\",[117,3.034]],[\"name/167\",[130,58.953]],[\"parent/167\",[117,3.034]],[\"name/168\",[131,58.953]],[\"parent/168\",[117,3.034]],[\"name/169\",[132,58.953]],[\"parent/169\",[117,3.034]],[\"name/170\",[109,53.845]],[\"parent/170\",[117,3.034]],[\"name/171\",[100,40.495]],[\"parent/171\",[]],[\"name/172\",[133,58.953]],[\"parent/172\",[100,3.801]],[\"name/173\",[134,58.953]],[\"parent/173\",[100,3.801]],[\"name/174\",[135,58.953]],[\"parent/174\",[100,3.801]],[\"name/175\",[136,58.953]],[\"parent/175\",[100,3.801]],[\"name/176\",[137,58.953]],[\"parent/176\",[100,3.801]],[\"name/177\",[138,58.953]],[\"parent/177\",[100,3.801]],[\"name/178\",[139,58.953]],[\"parent/178\",[100,3.801]],[\"name/179\",[140,40.495]],[\"parent/179\",[]],[\"name/180\",[141,53.845]],[\"parent/180\",[140,3.801]],[\"name/181\",[142,53.845]],[\"parent/181\",[140,3.801]],[\"name/182\",[143,58.953]],[\"parent/182\",[140,3.801]],[\"name/183\",[144,58.953]],[\"parent/183\",[140,3.801]],[\"name/184\",[145,58.953]],[\"parent/184\",[140,3.801]],[\"name/185\",[146,58.953]],[\"parent/185\",[140,3.801]],[\"name/186\",[147,58.953]],[\"parent/186\",[140,3.801]],[\"name/187\",[148,58.953]],[\"parent/187\",[140,3.801]],[\"name/188\",[149,21.656]],[\"parent/188\",[]],[\"name/189\",[10,44.29]],[\"parent/189\",[149,2.033]],[\"name/190\",[150,58.953]],[\"parent/190\",[149,2.033]],[\"name/191\",[127,53.845]],[\"parent/191\",[149,2.033]],[\"name/192\",[151,58.953]],[\"parent/192\",[149,2.033]],[\"name/193\",[152,58.953]],[\"parent/193\",[149,2.033]],[\"name/194\",[153,58.953]],[\"parent/194\",[149,2.033]],[\"name/195\",[154,58.953]],[\"parent/195\",[149,2.033]],[\"name/196\",[155,58.953]],[\"parent/196\",[149,2.033]],[\"name/197\",[156,58.953]],[\"parent/197\",[149,2.033]],[\"name/198\",[157,58.953]],[\"parent/198\",[149,2.033]],[\"name/199\",[158,58.953]],[\"parent/199\",[149,2.033]],[\"name/200\",[159,58.953]],[\"parent/200\",[149,2.033]],[\"name/201\",[160,58.953]],[\"parent/201\",[149,2.033]],[\"name/202\",[161,58.953]],[\"parent/202\",[149,2.033]],[\"name/203\",[162,58.953]],[\"parent/203\",[149,2.033]],[\"name/204\",[163,58.953]],[\"parent/204\",[149,2.033]],[\"name/205\",[164,58.953]],[\"parent/205\",[149,2.033]],[\"name/206\",[165,58.953]],[\"parent/206\",[149,2.033]],[\"name/207\",[166,58.953]],[\"parent/207\",[149,2.033]],[\"name/208\",[167,58.953]],[\"parent/208\",[149,2.033]],[\"name/209\",[168,58.953]],[\"parent/209\",[149,2.033]],[\"name/210\",[53,53.845]],[\"parent/210\",[149,2.033]],[\"name/211\",[169,58.953]],[\"parent/211\",[149,2.033]],[\"name/212\",[170,58.953]],[\"parent/212\",[149,2.033]],[\"name/213\",[171,50.48]],[\"parent/213\",[149,2.033]],[\"name/214\",[172,58.953]],[\"parent/214\",[149,2.033]],[\"name/215\",[173,58.953]],[\"parent/215\",[149,2.033]],[\"name/216\",[174,58.953]],[\"parent/216\",[149,2.033]],[\"name/217\",[175,58.953]],[\"parent/217\",[149,2.033]],[\"name/218\",[176,58.953]],[\"parent/218\",[149,2.033]],[\"name/219\",[177,58.953]],[\"parent/219\",[149,2.033]],[\"name/220\",[178,58.953]],[\"parent/220\",[149,2.033]],[\"name/221\",[179,58.953]],[\"parent/221\",[149,2.033]],[\"name/222\",[180,58.953]],[\"parent/222\",[149,2.033]],[\"name/223\",[181,58.953]],[\"parent/223\",[149,2.033]],[\"name/224\",[182,58.953]],[\"parent/224\",[149,2.033]],[\"name/225\",[183,58.953]],[\"parent/225\",[149,2.033]],[\"name/226\",[184,53.845]],[\"parent/226\",[149,2.033]],[\"name/227\",[185,58.953]],[\"parent/227\",[149,2.033]],[\"name/228\",[186,58.953]],[\"parent/228\",[149,2.033]],[\"name/229\",[187,58.953]],[\"parent/229\",[149,2.033]],[\"name/230\",[188,58.953]],[\"parent/230\",[149,2.033]],[\"name/231\",[189,58.953]],[\"parent/231\",[149,2.033]],[\"name/232\",[190,58.953]],[\"parent/232\",[149,2.033]],[\"name/233\",[56,53.845]],[\"parent/233\",[149,2.033]],[\"name/234\",[191,58.953]],[\"parent/234\",[149,2.033]],[\"name/235\",[192,58.953]],[\"parent/235\",[149,2.033]],[\"name/236\",[193,58.953]],[\"parent/236\",[149,2.033]],[\"name/237\",[194,58.953]],[\"parent/237\",[149,2.033]],[\"name/238\",[54,53.845]],[\"parent/238\",[149,2.033]],[\"name/239\",[195,58.953]],[\"parent/239\",[149,2.033]],[\"name/240\",[196,58.953]],[\"parent/240\",[149,2.033]],[\"name/241\",[197,58.953]],[\"parent/241\",[149,2.033]],[\"name/242\",[198,58.953]],[\"parent/242\",[149,2.033]],[\"name/243\",[199,58.953]],[\"parent/243\",[149,2.033]],[\"name/244\",[200,58.953]],[\"parent/244\",[149,2.033]],[\"name/245\",[201,58.953]],[\"parent/245\",[149,2.033]],[\"name/246\",[202,58.953]],[\"parent/246\",[149,2.033]],[\"name/247\",[203,58.953]],[\"parent/247\",[149,2.033]],[\"name/248\",[204,58.953]],[\"parent/248\",[149,2.033]],[\"name/249\",[205,58.953]],[\"parent/249\",[149,2.033]],[\"name/250\",[206,53.845]],[\"parent/250\",[]],[\"name/251\",[184,53.845]],[\"parent/251\",[206,5.054]],[\"name/252\",[48,53.845]],[\"parent/252\",[]],[\"name/253\",[46,53.845]],[\"parent/253\",[]],[\"name/254\",[207,44.29]],[\"parent/254\",[]],[\"name/255\",[208,58.953]],[\"parent/255\",[]],[\"name/256\",[68,42.859]],[\"parent/256\",[]],[\"name/257\",[12,28.831]],[\"parent/257\",[]],[\"name/258\",[1,45.96]],[\"parent/258\",[12,2.706]],[\"name/259\",[209,58.953]],[\"parent/259\",[12,2.706]],[\"name/260\",[210,58.953]],[\"parent/260\",[12,2.706]],[\"name/261\",[211,58.953]],[\"parent/261\",[12,2.706]],[\"name/262\",[212,58.953]],[\"parent/262\",[12,2.706]],[\"name/263\",[213,58.953]],[\"parent/263\",[12,2.706]],[\"name/264\",[214,58.953]],[\"parent/264\",[12,2.706]],[\"name/265\",[215,58.953]],[\"parent/265\",[12,2.706]],[\"name/266\",[171,50.48]],[\"parent/266\",[12,2.706]],[\"name/267\",[216,58.953]],[\"parent/267\",[12,2.706]],[\"name/268\",[7,31.021]],[\"parent/268\",[12,2.706]],[\"name/269\",[2,50.48]],[\"parent/269\",[217,3.404]],[\"name/270\",[218,58.953]],[\"parent/270\",[12,2.706]],[\"name/271\",[219,58.953]],[\"parent/271\",[12,2.706]],[\"name/272\",[220,58.953]],[\"parent/272\",[12,2.706]],[\"name/273\",[7,31.021]],[\"parent/273\",[12,2.706]],[\"name/274\",[221,50.48]],[\"parent/274\",[217,3.404]],[\"name/275\",[222,47.967]],[\"parent/275\",[217,3.404]],[\"name/276\",[223,58.953]],[\"parent/276\",[217,3.404]],[\"name/277\",[224,58.953]],[\"parent/277\",[217,3.404]],[\"name/278\",[225,58.953]],[\"parent/278\",[12,2.706]],[\"name/279\",[7,31.021]],[\"parent/279\",[12,2.706]],[\"name/280\",[221,50.48]],[\"parent/280\",[217,3.404]],[\"name/281\",[222,47.967]],[\"parent/281\",[217,3.404]],[\"name/282\",[2,50.48]],[\"parent/282\",[217,3.404]],[\"name/283\",[226,58.953]],[\"parent/283\",[217,3.404]],[\"name/284\",[227,58.953]],[\"parent/284\",[12,2.706]],[\"name/285\",[7,31.021]],[\"parent/285\",[12,2.706]],[\"name/286\",[221,50.48]],[\"parent/286\",[217,3.404]],[\"name/287\",[222,47.967]],[\"parent/287\",[217,3.404]],[\"name/288\",[228,58.953]],[\"parent/288\",[217,3.404]],[\"name/289\",[229,58.953]],[\"parent/289\",[12,2.706]],[\"name/290\",[7,31.021]],[\"parent/290\",[12,2.706]],[\"name/291\",[230,58.953]],[\"parent/291\",[217,3.404]],[\"name/292\",[231,58.953]],[\"parent/292\",[217,3.404]],[\"name/293\",[232,58.953]],[\"parent/293\",[12,2.706]],[\"name/294\",[10,44.29]],[\"parent/294\",[12,2.706]],[\"name/295\",[34,53.845]],[\"parent/295\",[12,2.706]],[\"name/296\",[233,58.953]],[\"parent/296\",[12,2.706]],[\"name/297\",[234,58.953]],[\"parent/297\",[12,2.706]],[\"name/298\",[235,58.953]],[\"parent/298\",[12,2.706]],[\"name/299\",[236,58.953]],[\"parent/299\",[]],[\"name/300\",[237,58.953]],[\"parent/300\",[]],[\"name/301\",[238,58.953]],[\"parent/301\",[]],[\"name/302\",[239,58.953]],[\"parent/302\",[]],[\"name/303\",[77,47.967]],[\"parent/303\",[]],[\"name/304\",[240,58.953]],[\"parent/304\",[]],[\"name/305\",[241,58.953]],[\"parent/305\",[]],[\"name/306\",[242,58.953]],[\"parent/306\",[]],[\"name/307\",[243,58.953]],[\"parent/307\",[]],[\"name/308\",[244,53.845]],[\"parent/308\",[]],[\"name/309\",[245,53.845]],[\"parent/309\",[]],[\"name/310\",[246,58.953]],[\"parent/310\",[]],[\"name/311\",[247,58.953]],[\"parent/311\",[]],[\"name/312\",[248,58.953]],[\"parent/312\",[]],[\"name/313\",[249,58.953]],[\"parent/313\",[]],[\"name/314\",[12,28.831]],[\"parent/314\",[]],[\"name/315\",[22,53.845]],[\"parent/315\",[]],[\"name/316\",[250,58.953]],[\"parent/316\",[]],[\"name/317\",[251,58.953]],[\"parent/317\",[]],[\"name/318\",[252,58.953]],[\"parent/318\",[]],[\"name/319\",[253,58.953]],[\"parent/319\",[]],[\"name/320\",[254,58.953]],[\"parent/320\",[]],[\"name/321\",[255,58.953]],[\"parent/321\",[]],[\"name/322\",[256,45.96]],[\"parent/322\",[]],[\"name/323\",[257,35.599]],[\"parent/323\",[256,4.314]],[\"name/324\",[258,35.599]],[\"parent/324\",[256,4.314]],[\"name/325\",[259,36.981]],[\"parent/325\",[256,4.314]],[\"name/326\",[260,36.981]],[\"parent/326\",[256,4.314]],[\"name/327\",[261,38.584]],[\"parent/327\",[]],[\"name/328\",[262,50.48]],[\"parent/328\",[261,3.622]],[\"name/329\",[263,47.967]],[\"parent/329\",[261,3.622]],[\"name/330\",[264,44.29]],[\"parent/330\",[261,3.622]],[\"name/331\",[265,50.48]],[\"parent/331\",[261,3.622]],[\"name/332\",[266,58.953]],[\"parent/332\",[261,3.622]],[\"name/333\",[267,53.845]],[\"parent/333\",[261,3.622]],[\"name/334\",[257,35.599]],[\"parent/334\",[261,3.622]],[\"name/335\",[258,35.599]],[\"parent/335\",[261,3.622]],[\"name/336\",[259,36.981]],[\"parent/336\",[261,3.622]],[\"name/337\",[260,36.981]],[\"parent/337\",[261,3.622]],[\"name/338\",[268,45.96]],[\"parent/338\",[]],[\"name/339\",[257,35.599]],[\"parent/339\",[268,4.314]],[\"name/340\",[258,35.599]],[\"parent/340\",[268,4.314]],[\"name/341\",[259,36.981]],[\"parent/341\",[268,4.314]],[\"name/342\",[260,36.981]],[\"parent/342\",[268,4.314]],[\"name/343\",[269,45.96]],[\"parent/343\",[]],[\"name/344\",[257,35.599]],[\"parent/344\",[269,4.314]],[\"name/345\",[258,35.599]],[\"parent/345\",[269,4.314]],[\"name/346\",[259,36.981]],[\"parent/346\",[269,4.314]],[\"name/347\",[260,36.981]],[\"parent/347\",[269,4.314]],[\"name/348\",[270,44.29]],[\"parent/348\",[]],[\"name/349\",[264,44.29]],[\"parent/349\",[270,4.157]],[\"name/350\",[257,35.599]],[\"parent/350\",[270,4.157]],[\"name/351\",[258,35.599]],[\"parent/351\",[270,4.157]],[\"name/352\",[259,36.981]],[\"parent/352\",[270,4.157]],[\"name/353\",[260,36.981]],[\"parent/353\",[270,4.157]],[\"name/354\",[271,44.29]],[\"parent/354\",[]],[\"name/355\",[264,44.29]],[\"parent/355\",[271,4.157]],[\"name/356\",[257,35.599]],[\"parent/356\",[271,4.157]],[\"name/357\",[258,35.599]],[\"parent/357\",[271,4.157]],[\"name/358\",[259,36.981]],[\"parent/358\",[271,4.157]],[\"name/359\",[260,36.981]],[\"parent/359\",[271,4.157]],[\"name/360\",[272,45.96]],[\"parent/360\",[]],[\"name/361\",[257,35.599]],[\"parent/361\",[272,4.314]],[\"name/362\",[258,35.599]],[\"parent/362\",[272,4.314]],[\"name/363\",[259,36.981]],[\"parent/363\",[272,4.314]],[\"name/364\",[260,36.981]],[\"parent/364\",[272,4.314]],[\"name/365\",[273,45.96]],[\"parent/365\",[]],[\"name/366\",[257,35.599]],[\"parent/366\",[273,4.314]],[\"name/367\",[258,35.599]],[\"parent/367\",[273,4.314]],[\"name/368\",[259,36.981]],[\"parent/368\",[273,4.314]],[\"name/369\",[260,36.981]],[\"parent/369\",[273,4.314]],[\"name/370\",[274,37.751]],[\"parent/370\",[]],[\"name/371\",[275,53.845]],[\"parent/371\",[274,3.543]],[\"name/372\",[276,53.845]],[\"parent/372\",[274,3.543]],[\"name/373\",[277,53.845]],[\"parent/373\",[274,3.543]],[\"name/374\",[278,58.953]],[\"parent/374\",[274,3.543]],[\"name/375\",[77,47.967]],[\"parent/375\",[274,3.543]],[\"name/376\",[90,53.845]],[\"parent/376\",[274,3.543]],[\"name/377\",[86,53.845]],[\"parent/377\",[274,3.543]],[\"name/378\",[257,35.599]],[\"parent/378\",[274,3.543]],[\"name/379\",[258,35.599]],[\"parent/379\",[274,3.543]],[\"name/380\",[259,36.981]],[\"parent/380\",[274,3.543]],[\"name/381\",[260,36.981]],[\"parent/381\",[274,3.543]],[\"name/382\",[279,42.859]],[\"parent/382\",[]],[\"name/383\",[263,47.967]],[\"parent/383\",[279,4.023]],[\"name/384\",[264,44.29]],[\"parent/384\",[279,4.023]],[\"name/385\",[257,35.599]],[\"parent/385\",[279,4.023]],[\"name/386\",[258,35.599]],[\"parent/386\",[279,4.023]],[\"name/387\",[259,36.981]],[\"parent/387\",[279,4.023]],[\"name/388\",[260,36.981]],[\"parent/388\",[279,4.023]],[\"name/389\",[280,36.266]],[\"parent/389\",[]],[\"name/390\",[262,50.48]],[\"parent/390\",[280,3.404]],[\"name/391\",[264,44.29]],[\"parent/391\",[280,3.404]],[\"name/392\",[265,50.48]],[\"parent/392\",[280,3.404]],[\"name/393\",[263,47.967]],[\"parent/393\",[280,3.404]],[\"name/394\",[281,53.845]],[\"parent/394\",[280,3.404]],[\"name/395\",[275,53.845]],[\"parent/395\",[280,3.404]],[\"name/396\",[7,31.021]],[\"parent/396\",[280,3.404]],[\"name/397\",[258,35.599]],[\"parent/397\",[282,5.054]],[\"name/398\",[283,58.953]],[\"parent/398\",[280,3.404]],[\"name/399\",[7,31.021]],[\"parent/399\",[280,3.404]],[\"name/400\",[258,35.599]],[\"parent/400\",[282,5.054]],[\"name/401\",[257,35.599]],[\"parent/401\",[280,3.404]],[\"name/402\",[258,35.599]],[\"parent/402\",[280,3.404]],[\"name/403\",[259,36.981]],[\"parent/403\",[280,3.404]],[\"name/404\",[260,36.981]],[\"parent/404\",[280,3.404]],[\"name/405\",[284,41.607]],[\"parent/405\",[]],[\"name/406\",[264,44.29]],[\"parent/406\",[284,3.905]],[\"name/407\",[265,50.48]],[\"parent/407\",[284,3.905]],[\"name/408\",[263,47.967]],[\"parent/408\",[284,3.905]],[\"name/409\",[257,35.599]],[\"parent/409\",[284,3.905]],[\"name/410\",[258,35.599]],[\"parent/410\",[284,3.905]],[\"name/411\",[259,36.981]],[\"parent/411\",[284,3.905]],[\"name/412\",[260,36.981]],[\"parent/412\",[284,3.905]],[\"name/413\",[285,44.29]],[\"parent/413\",[]],[\"name/414\",[286,53.845]],[\"parent/414\",[285,4.157]],[\"name/415\",[257,35.599]],[\"parent/415\",[285,4.157]],[\"name/416\",[258,35.599]],[\"parent/416\",[285,4.157]],[\"name/417\",[259,36.981]],[\"parent/417\",[285,4.157]],[\"name/418\",[260,36.981]],[\"parent/418\",[285,4.157]],[\"name/419\",[287,32.804]],[\"parent/419\",[]],[\"name/420\",[257,35.599]],[\"parent/420\",[287,3.079]],[\"name/421\",[288,58.953]],[\"parent/421\",[287,3.079]],[\"name/422\",[141,53.845]],[\"parent/422\",[287,3.079]],[\"name/423\",[142,53.845]],[\"parent/423\",[287,3.079]],[\"name/424\",[267,53.845]],[\"parent/424\",[287,3.079]],[\"name/425\",[289,58.953]],[\"parent/425\",[287,3.079]],[\"name/426\",[290,58.953]],[\"parent/426\",[287,3.079]],[\"name/427\",[291,58.953]],[\"parent/427\",[287,3.079]],[\"name/428\",[292,58.953]],[\"parent/428\",[287,3.079]],[\"name/429\",[286,53.845]],[\"parent/429\",[287,3.079]],[\"name/430\",[293,58.953]],[\"parent/430\",[287,3.079]],[\"name/431\",[294,58.953]],[\"parent/431\",[287,3.079]],[\"name/432\",[295,58.953]],[\"parent/432\",[287,3.079]],[\"name/433\",[296,58.953]],[\"parent/433\",[287,3.079]],[\"name/434\",[297,58.953]],[\"parent/434\",[287,3.079]],[\"name/435\",[298,58.953]],[\"parent/435\",[287,3.079]],[\"name/436\",[299,58.953]],[\"parent/436\",[287,3.079]],[\"name/437\",[300,58.953]],[\"parent/437\",[287,3.079]],[\"name/438\",[301,58.953]],[\"parent/438\",[287,3.079]],[\"name/439\",[302,53.845]],[\"parent/439\",[]],[\"name/440\",[257,35.599]],[\"parent/440\",[302,5.054]],[\"name/441\",[303,58.953]],[\"parent/441\",[]],[\"name/442\",[304,58.953]],[\"parent/442\",[]],[\"name/443\",[3,32.804]],[\"parent/443\",[]],[\"name/444\",[222,47.967]],[\"parent/444\",[3,3.079]],[\"name/445\",[305,58.953]],[\"parent/445\",[3,3.079]],[\"name/446\",[306,58.953]],[\"parent/446\",[3,3.079]],[\"name/447\",[307,58.953]],[\"parent/447\",[3,3.079]],[\"name/448\",[308,58.953]],[\"parent/448\",[3,3.079]],[\"name/449\",[42,53.845]],[\"parent/449\",[3,3.079]],[\"name/450\",[309,58.953]],[\"parent/450\",[3,3.079]],[\"name/451\",[310,58.953]],[\"parent/451\",[3,3.079]],[\"name/452\",[311,58.953]],[\"parent/452\",[3,3.079]],[\"name/453\",[312,58.953]],[\"parent/453\",[3,3.079]],[\"name/454\",[313,58.953]],[\"parent/454\",[3,3.079]],[\"name/455\",[171,50.48]],[\"parent/455\",[3,3.079]],[\"name/456\",[17,47.967]],[\"parent/456\",[3,3.079]],[\"name/457\",[14,45.96]],[\"parent/457\",[3,3.079]],[\"name/458\",[15,45.96]],[\"parent/458\",[3,3.079]],[\"name/459\",[16,47.967]],[\"parent/459\",[3,3.079]],[\"name/460\",[18,47.967]],[\"parent/460\",[3,3.079]],[\"name/461\",[35,50.48]],[\"parent/461\",[3,3.079]],[\"name/462\",[314,58.953]],[\"parent/462\",[]],[\"name/463\",[315,32.327]],[\"parent/463\",[]],[\"name/464\",[91,44.29]],[\"parent/464\",[315,3.034]],[\"name/465\",[316,45.96]],[\"parent/465\",[315,3.034]],[\"name/466\",[317,53.845]],[\"parent/466\",[315,3.034]],[\"name/467\",[318,58.953]],[\"parent/467\",[315,3.034]],[\"name/468\",[207,44.29]],[\"parent/468\",[315,3.034]],[\"name/469\",[319,45.96]],[\"parent/469\",[315,3.034]],[\"name/470\",[276,53.845]],[\"parent/470\",[315,3.034]],[\"name/471\",[320,58.953]],[\"parent/471\",[315,3.034]],[\"name/472\",[321,50.48]],[\"parent/472\",[315,3.034]],[\"name/473\",[322,58.953]],[\"parent/473\",[315,3.034]],[\"name/474\",[244,53.845]],[\"parent/474\",[315,3.034]],[\"name/475\",[323,58.953]],[\"parent/475\",[315,3.034]],[\"name/476\",[77,47.967]],[\"parent/476\",[315,3.034]],[\"name/477\",[245,53.845]],[\"parent/477\",[315,3.034]],[\"name/478\",[324,58.953]],[\"parent/478\",[315,3.034]],[\"name/479\",[277,53.845]],[\"parent/479\",[315,3.034]],[\"name/480\",[325,58.953]],[\"parent/480\",[315,3.034]],[\"name/481\",[326,58.953]],[\"parent/481\",[315,3.034]],[\"name/482\",[262,50.48]],[\"parent/482\",[315,3.034]],[\"name/483\",[8,28.831]],[\"parent/483\",[315,3.034]],[\"name/484\",[327,58.953]],[\"parent/484\",[]],[\"name/485\",[328,58.953]],[\"parent/485\",[]],[\"name/486\",[329,58.953]],[\"parent/486\",[]],[\"name/487\",[330,58.953]],[\"parent/487\",[]],[\"name/488\",[331,58.953]],[\"parent/488\",[]],[\"name/489\",[332,58.953]],[\"parent/489\",[]],[\"name/490\",[333,44.29]],[\"parent/490\",[]],[\"name/491\",[334,58.953]],[\"parent/491\",[333,4.157]],[\"name/492\",[335,58.953]],[\"parent/492\",[333,4.157]],[\"name/493\",[336,58.953]],[\"parent/493\",[333,4.157]],[\"name/494\",[31,50.48]],[\"parent/494\",[333,4.157]],[\"name/495\",[316,45.96]],[\"parent/495\",[333,4.157]],[\"name/496\",[337,42.859]],[\"parent/496\",[]],[\"name/497\",[91,44.29]],[\"parent/497\",[337,4.023]],[\"name/498\",[316,45.96]],[\"parent/498\",[337,4.023]],[\"name/499\",[207,44.29]],[\"parent/499\",[337,4.023]],[\"name/500\",[319,45.96]],[\"parent/500\",[337,4.023]],[\"name/501\",[338,53.845]],[\"parent/501\",[337,4.023]],[\"name/502\",[321,50.48]],[\"parent/502\",[337,4.023]],[\"name/503\",[339,38.584]],[\"parent/503\",[]],[\"name/504\",[91,44.29]],[\"parent/504\",[339,3.622]],[\"name/505\",[316,45.96]],[\"parent/505\",[339,3.622]],[\"name/506\",[317,53.845]],[\"parent/506\",[339,3.622]],[\"name/507\",[340,58.953]],[\"parent/507\",[339,3.622]],[\"name/508\",[207,44.29]],[\"parent/508\",[339,3.622]],[\"name/509\",[319,45.96]],[\"parent/509\",[339,3.622]],[\"name/510\",[338,53.845]],[\"parent/510\",[339,3.622]],[\"name/511\",[341,53.845]],[\"parent/511\",[339,3.622]],[\"name/512\",[321,50.48]],[\"parent/512\",[339,3.622]],[\"name/513\",[281,53.845]],[\"parent/513\",[339,3.622]],[\"name/514\",[342,42.859]],[\"parent/514\",[]],[\"name/515\",[91,44.29]],[\"parent/515\",[342,4.023]],[\"name/516\",[316,45.96]],[\"parent/516\",[342,4.023]],[\"name/517\",[343,58.953]],[\"parent/517\",[342,4.023]],[\"name/518\",[341,53.845]],[\"parent/518\",[342,4.023]],[\"name/519\",[207,44.29]],[\"parent/519\",[342,4.023]],[\"name/520\",[319,45.96]],[\"parent/520\",[342,4.023]],[\"name/521\",[344,58.953]],[\"parent/521\",[]],[\"name/522\",[345,40.495]],[\"parent/522\",[]],[\"name/523\",[91,44.29]],[\"parent/523\",[345,3.801]],[\"name/524\",[14,45.96]],[\"parent/524\",[345,3.801]],[\"name/525\",[15,45.96]],[\"parent/525\",[345,3.801]],[\"name/526\",[346,58.953]],[\"parent/526\",[345,3.801]],[\"name/527\",[7,31.021]],[\"parent/527\",[345,3.801]],[\"name/528\",[347,58.953]],[\"parent/528\",[348,5.054]],[\"name/529\",[349,58.953]],[\"parent/529\",[348,5.054]],[\"name/530\",[350,58.953]],[\"parent/530\",[345,3.801]],[\"name/531\",[207,44.29]],[\"parent/531\",[345,3.801]],[\"name/532\",[319,45.96]],[\"parent/532\",[345,3.801]],[\"name/533\",[4,37.751]],[\"parent/533\",[]],[\"name/534\",[14,45.96]],[\"parent/534\",[4,3.543]],[\"name/535\",[15,45.96]],[\"parent/535\",[4,3.543]],[\"name/536\",[16,47.967]],[\"parent/536\",[4,3.543]],[\"name/537\",[17,47.967]],[\"parent/537\",[4,3.543]],[\"name/538\",[18,47.967]],[\"parent/538\",[4,3.543]],[\"name/539\",[25,53.845]],[\"parent/539\",[4,3.543]],[\"name/540\",[10,44.29]],[\"parent/540\",[4,3.543]],[\"name/541\",[351,58.953]],[\"parent/541\",[4,3.543]],[\"name/542\",[352,58.953]],[\"parent/542\",[4,3.543]],[\"name/543\",[353,58.953]],[\"parent/543\",[4,3.543]]],\"invertedIndex\":[[\"__type\",{\"_index\":7,\"name\":{\"7\":{},\"13\":{},\"15\":{},\"17\":{},\"19\":{},\"21\":{},\"23\":{},\"25\":{},\"27\":{},\"29\":{},\"40\":{},\"42\":{},\"44\":{},\"74\":{},\"159\":{},\"161\":{},\"268\":{},\"273\":{},\"279\":{},\"285\":{},\"290\":{},\"396\":{},\"399\":{},\"527\":{}},\"parent\":{}}],[\"adapter\",{\"_index\":228,\"name\":{\"288\":{}},\"parent\":{}}],[\"addeventlistener\",{\"_index\":146,\"name\":{\"185\":{}},\"parent\":{}}],[\"age\",{\"_index\":322,\"name\":{\"473\":{}},\"parent\":{}}],[\"agent\",{\"_index\":213,\"name\":{\"263\":{}},\"parent\":{}}],[\"all\",{\"_index\":20,\"name\":{\"28\":{},\"72\":{}},\"parent\":{}}],[\"analyze\",{\"_index\":27,\"name\":{\"36\":{}},\"parent\":{}}],[\"annotations\",{\"_index\":321,\"name\":{\"472\":{},\"502\":{},\"512\":{}},\"parent\":{}}],[\"antispoof\",{\"_index\":90,\"name\":{\"120\":{},\"376\":{}},\"parent\":{}}],[\"anycanvas\",{\"_index\":250,\"name\":{\"316\":{}},\"parent\":{}}],[\"anyimage\",{\"_index\":251,\"name\":{\"317\":{}},\"parent\":{}}],[\"anyvideo\",{\"_index\":252,\"name\":{\"318\":{}},\"parent\":{}}],[\"arc\",{\"_index\":197,\"name\":{\"241\":{}},\"parent\":{}}],[\"arcto\",{\"_index\":198,\"name\":{\"242\":{}},\"parent\":{}}],[\"array\",{\"_index\":103,\"name\":{\"135\":{}},\"parent\":{}}],[\"arraysync\",{\"_index\":104,\"name\":{\"136\":{}},\"parent\":{}}],[\"async\",{\"_index\":308,\"name\":{\"448\":{}},\"parent\":{}}],[\"backend\",{\"_index\":222,\"name\":{\"275\":{},\"281\":{},\"287\":{},\"444\":{}},\"parent\":{}}],[\"backends\",{\"_index\":214,\"name\":{\"264\":{}},\"parent\":{}}],[\"backendtype\",{\"_index\":303,\"name\":{\"441\":{}},\"parent\":{}}],[\"beginpath\",{\"_index\":175,\"name\":{\"217\":{}},\"parent\":{}}],[\"beziercurveto\",{\"_index\":199,\"name\":{\"243\":{}},\"parent\":{}}],[\"blazepose\",{\"_index\":73,\"name\":{\"102\":{}},\"parent\":{}}],[\"blazeposedetect\",{\"_index\":72,\"name\":{\"101\":{}},\"parent\":{}}],[\"blur\",{\"_index\":286,\"name\":{\"414\":{},\"429\":{}},\"parent\":{}}],[\"body\",{\"_index\":15,\"name\":{\"18\":{},\"67\":{},\"458\":{},\"525\":{},\"535\":{}},\"parent\":{}}],[\"bodyannotation\",{\"_index\":248,\"name\":{\"312\":{}},\"parent\":{}}],[\"bodyannotationblazepose\",{\"_index\":331,\"name\":{\"488\":{}},\"parent\":{}}],[\"bodyannotationefficientpose\",{\"_index\":332,\"name\":{\"489\":{}},\"parent\":{}}],[\"bodyconfig\",{\"_index\":279,\"name\":{\"382\":{}},\"parent\":{\"383\":{},\"384\":{},\"385\":{},\"386\":{},\"387\":{},\"388\":{}}}],[\"bodygesture\",{\"_index\":237,\"name\":{\"300\":{}},\"parent\":{}}],[\"bodykeypoint\",{\"_index\":333,\"name\":{\"490\":{}},\"parent\":{\"491\":{},\"492\":{},\"493\":{},\"494\":{},\"495\":{}}}],[\"bodylandmark\",{\"_index\":247,\"name\":{\"311\":{}},\"parent\":{}}],[\"bodylandmarkblazepose\",{\"_index\":330,\"name\":{\"487\":{}},\"parent\":{}}],[\"bodylandmarkefficientnet\",{\"_index\":329,\"name\":{\"486\":{}},\"parent\":{}}],[\"bodylandmarkmovenet\",{\"_index\":328,\"name\":{\"485\":{}},\"parent\":{}}],[\"bodylandmarkposenet\",{\"_index\":327,\"name\":{\"484\":{}},\"parent\":{}}],[\"bodyresult\",{\"_index\":337,\"name\":{\"496\":{}},\"parent\":{\"497\":{},\"498\":{},\"499\":{},\"500\":{},\"501\":{},\"502\":{}}}],[\"box\",{\"_index\":207,\"name\":{\"254\":{},\"468\":{},\"499\":{},\"508\":{},\"519\":{},\"531\":{}},\"parent\":{}}],[\"boxraw\",{\"_index\":319,\"name\":{\"469\":{},\"500\":{},\"509\":{},\"520\":{},\"532\":{}},\"parent\":{}}],[\"boxscore\",{\"_index\":317,\"name\":{\"466\":{},\"506\":{}},\"parent\":{}}],[\"brightness\",{\"_index\":290,\"name\":{\"426\":{}},\"parent\":{}}],[\"browser\",{\"_index\":209,\"name\":{\"259\":{}},\"parent\":{}}],[\"buffer\",{\"_index\":101,\"name\":{\"133\":{}},\"parent\":{}}],[\"buffersync\",{\"_index\":102,\"name\":{\"134\":{}},\"parent\":{}}],[\"bytes\",{\"_index\":108,\"name\":{\"140\":{}},\"parent\":{}}],[\"cachemodels\",{\"_index\":310,\"name\":{\"451\":{}},\"parent\":{}}],[\"cachesensitivity\",{\"_index\":311,\"name\":{\"452\":{}},\"parent\":{}}],[\"canvas\",{\"_index\":10,\"name\":{\"9\":{},\"14\":{},\"71\":{},\"189\":{},\"294\":{},\"540\":{}},\"parent\":{}}],[\"canvasdrawimage\",{\"_index\":206,\"name\":{\"250\":{}},\"parent\":{\"251\":{}}}],[\"centernet\",{\"_index\":74,\"name\":{\"103\":{}},\"parent\":{}}],[\"class\",{\"_index\":343,\"name\":{\"517\":{}},\"parent\":{}}],[\"clearrect\",{\"_index\":172,\"name\":{\"214\":{}},\"parent\":{}}],[\"clip\",{\"_index\":176,\"name\":{\"218\":{}},\"parent\":{}}],[\"clone\",{\"_index\":113,\"name\":{\"145\":{}},\"parent\":{}}],[\"closepath\",{\"_index\":200,\"name\":{\"244\":{}},\"parent\":{}}],[\"color\",{\"_index\":50,\"name\":{\"75\":{}},\"parent\":{}}],[\"compare\",{\"_index\":37,\"name\":{\"49\":{}},\"parent\":{}}],[\"config\",{\"_index\":3,\"name\":{\"3\":{},\"443\":{}},\"parent\":{\"444\":{},\"445\":{},\"446\":{},\"447\":{},\"448\":{},\"449\":{},\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{},\"455\":{},\"456\":{},\"457\":{},\"458\":{},\"459\":{},\"460\":{},\"461\":{}}}],[\"constructor\",{\"_index\":1,\"name\":{\"1\":{},\"98\":{},\"122\":{},\"151\":{},\"258\":{}},\"parent\":{}}],[\"contrast\",{\"_index\":291,\"name\":{\"427\":{}},\"parent\":{}}],[\"converttoblob\",{\"_index\":144,\"name\":{\"183\":{}},\"parent\":{}}],[\"cpu\",{\"_index\":229,\"name\":{\"289\":{}},\"parent\":{}}],[\"createconicgradient\",{\"_index\":164,\"name\":{\"205\":{}},\"parent\":{}}],[\"createimagedata\",{\"_index\":185,\"name\":{\"227\":{}},\"parent\":{}}],[\"createlineargradient\",{\"_index\":165,\"name\":{\"206\":{}},\"parent\":{}}],[\"createpattern\",{\"_index\":166,\"name\":{\"207\":{}},\"parent\":{}}],[\"createradialgradient\",{\"_index\":167,\"name\":{\"208\":{}},\"parent\":{}}],[\"data\",{\"_index\":105,\"name\":{\"137\":{}},\"parent\":{}}],[\"dataid\",{\"_index\":92,\"name\":{\"124\":{}},\"parent\":{}}],[\"datasync\",{\"_index\":107,\"name\":{\"139\":{}},\"parent\":{}}],[\"datatogpu\",{\"_index\":106,\"name\":{\"138\":{}},\"parent\":{}}],[\"deallocate\",{\"_index\":312,\"name\":{\"453\":{}},\"parent\":{}}],[\"debug\",{\"_index\":307,\"name\":{\"447\":{}},\"parent\":{}}],[\"default\",{\"_index\":45,\"name\":{\"57\":{}},\"parent\":{}}],[\"defaults\",{\"_index\":314,\"name\":{\"462\":{}},\"parent\":{}}],[\"description\",{\"_index\":278,\"name\":{\"374\":{}},\"parent\":{}}],[\"descriptor\",{\"_index\":46,\"name\":{\"62\":{},\"253\":{}},\"parent\":{}}],[\"detect\",{\"_index\":44,\"name\":{\"56\":{}},\"parent\":{}}],[\"detector\",{\"_index\":275,\"name\":{\"371\":{},\"395\":{}},\"parent\":{}}],[\"direction\",{\"_index\":194,\"name\":{\"237\":{}},\"parent\":{}}],[\"dispatchevent\",{\"_index\":147,\"name\":{\"186\":{}},\"parent\":{}}],[\"dispose\",{\"_index\":109,\"name\":{\"141\":{},\"170\":{}},\"parent\":{}}],[\"disposeintermediatetensors\",{\"_index\":132,\"name\":{\"169\":{}},\"parent\":{}}],[\"distance\",{\"_index\":31,\"name\":{\"41\":{},\"59\":{},\"494\":{}},\"parent\":{}}],[\"draw\",{\"_index\":13,\"name\":{\"12\":{},\"64\":{}},\"parent\":{\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"92\":{}}}],[\"draw.drawoptions\",{\"_index\":49,\"name\":{},\"parent\":{\"74\":{}}}],[\"draw.drawoptions.__type\",{\"_index\":51,\"name\":{},\"parent\":{\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{}}}],[\"drawboxes\",{\"_index\":62,\"name\":{\"86\":{}},\"parent\":{}}],[\"drawgaze\",{\"_index\":64,\"name\":{\"88\":{}},\"parent\":{}}],[\"drawgestures\",{\"_index\":61,\"name\":{\"85\":{}},\"parent\":{}}],[\"drawimage\",{\"_index\":184,\"name\":{\"226\":{},\"251\":{}},\"parent\":{}}],[\"drawlabels\",{\"_index\":60,\"name\":{\"84\":{}},\"parent\":{}}],[\"drawoptions\",{\"_index\":48,\"name\":{\"73\":{},\"252\":{}},\"parent\":{}}],[\"drawpoints\",{\"_index\":59,\"name\":{\"83\":{}},\"parent\":{}}],[\"drawpolygons\",{\"_index\":63,\"name\":{\"87\":{}},\"parent\":{}}],[\"dtype\",{\"_index\":95,\"name\":{\"127\":{}},\"parent\":{}}],[\"efficientpose\",{\"_index\":75,\"name\":{\"104\":{}},\"parent\":{}}],[\"ellipse\",{\"_index\":201,\"name\":{\"245\":{}},\"parent\":{}}],[\"embedding\",{\"_index\":324,\"name\":{\"478\":{}},\"parent\":{}}],[\"emit\",{\"_index\":40,\"name\":{\"52\":{}},\"parent\":{}}],[\"emotion\",{\"_index\":77,\"name\":{\"106\":{},\"303\":{},\"375\":{},\"476\":{}},\"parent\":{}}],[\"enabled\",{\"_index\":257,\"name\":{\"323\":{},\"334\":{},\"339\":{},\"344\":{},\"350\":{},\"356\":{},\"361\":{},\"366\":{},\"378\":{},\"385\":{},\"401\":{},\"409\":{},\"415\":{},\"420\":{},\"440\":{}},\"parent\":{}}],[\"enhance\",{\"_index\":36,\"name\":{\"48\":{}},\"parent\":{}}],[\"env\",{\"_index\":12,\"name\":{\"11\":{},\"257\":{},\"314\":{}},\"parent\":{\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{},\"278\":{},\"279\":{},\"284\":{},\"285\":{},\"289\":{},\"290\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{}}}],[\"env.__type\",{\"_index\":217,\"name\":{},\"parent\":{\"269\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"286\":{},\"287\":{},\"288\":{},\"291\":{},\"292\":{}}}],[\"equalization\",{\"_index\":288,\"name\":{\"421\":{}},\"parent\":{}}],[\"error\",{\"_index\":353,\"name\":{\"543\":{}},\"parent\":{}}],[\"events\",{\"_index\":22,\"name\":{\"31\":{},\"315\":{}},\"parent\":{}}],[\"execute\",{\"_index\":129,\"name\":{\"166\":{}},\"parent\":{}}],[\"executeasync\",{\"_index\":130,\"name\":{\"167\":{}},\"parent\":{}}],[\"externalcanvas\",{\"_index\":254,\"name\":{\"320\":{}},\"parent\":{}}],[\"face\",{\"_index\":14,\"name\":{\"16\":{},\"66\":{},\"457\":{},\"524\":{},\"534\":{}},\"parent\":{}}],[\"faceantispoofconfig\",{\"_index\":272,\"name\":{\"360\":{}},\"parent\":{\"361\":{},\"362\":{},\"363\":{},\"364\":{}}}],[\"faceconfig\",{\"_index\":274,\"name\":{\"370\":{}},\"parent\":{\"371\":{},\"372\":{},\"373\":{},\"374\":{},\"375\":{},\"376\":{},\"377\":{},\"378\":{},\"379\":{},\"380\":{},\"381\":{}}}],[\"facedescriptionconfig\",{\"_index\":270,\"name\":{\"348\":{}},\"parent\":{\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{}}}],[\"facedetect\",{\"_index\":78,\"name\":{\"107\":{}},\"parent\":{}}],[\"facedetectorconfig\",{\"_index\":261,\"name\":{\"327\":{}},\"parent\":{\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{},\"335\":{},\"336\":{},\"337\":{}}}],[\"faceemotionconfig\",{\"_index\":271,\"name\":{\"354\":{}},\"parent\":{\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{}}}],[\"facegesture\",{\"_index\":236,\"name\":{\"299\":{}},\"parent\":{}}],[\"faceiris\",{\"_index\":79,\"name\":{\"108\":{}},\"parent\":{}}],[\"faceirisconfig\",{\"_index\":269,\"name\":{\"343\":{}},\"parent\":{\"344\":{},\"345\":{},\"346\":{},\"347\":{}}}],[\"facelandmark\",{\"_index\":246,\"name\":{\"310\":{}},\"parent\":{}}],[\"facelivenessconfig\",{\"_index\":273,\"name\":{\"365\":{}},\"parent\":{\"366\":{},\"367\":{},\"368\":{},\"369\":{}}}],[\"facemesh\",{\"_index\":80,\"name\":{\"109\":{}},\"parent\":{}}],[\"facemeshconfig\",{\"_index\":268,\"name\":{\"338\":{}},\"parent\":{\"339\":{},\"340\":{},\"341\":{},\"342\":{}}}],[\"faceres\",{\"_index\":81,\"name\":{\"110\":{}},\"parent\":{}}],[\"faceresult\",{\"_index\":315,\"name\":{\"463\":{}},\"parent\":{\"464\":{},\"465\":{},\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{},\"471\":{},\"472\":{},\"473\":{},\"474\":{},\"475\":{},\"476\":{},\"477\":{},\"478\":{},\"479\":{},\"480\":{},\"481\":{},\"482\":{},\"483\":{}}}],[\"facescore\",{\"_index\":318,\"name\":{\"467\":{}},\"parent\":{}}],[\"facetriangulation\",{\"_index\":23,\"name\":{\"32\":{}},\"parent\":{}}],[\"faceuvmap\",{\"_index\":24,\"name\":{\"33\":{}},\"parent\":{}}],[\"fill\",{\"_index\":177,\"name\":{\"219\":{}},\"parent\":{}}],[\"fillpolygons\",{\"_index\":65,\"name\":{\"89\":{}},\"parent\":{}}],[\"fillrect\",{\"_index\":173,\"name\":{\"215\":{}},\"parent\":{}}],[\"fillstyle\",{\"_index\":162,\"name\":{\"203\":{}},\"parent\":{}}],[\"filltext\",{\"_index\":181,\"name\":{\"223\":{}},\"parent\":{}}],[\"filter\",{\"_index\":171,\"name\":{\"213\":{},\"266\":{},\"455\":{}},\"parent\":{}}],[\"filterconfig\",{\"_index\":287,\"name\":{\"419\":{}},\"parent\":{\"420\":{},\"421\":{},\"422\":{},\"423\":{},\"424\":{},\"425\":{},\"426\":{},\"427\":{},\"428\":{},\"429\":{},\"430\":{},\"431\":{},\"432\":{},\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{},\"438\":{}}}],[\"finger\",{\"_index\":240,\"name\":{\"304\":{}},\"parent\":{}}],[\"fingercurl\",{\"_index\":241,\"name\":{\"305\":{}},\"parent\":{}}],[\"fingerdirection\",{\"_index\":242,\"name\":{\"306\":{}},\"parent\":{}}],[\"fingerscore\",{\"_index\":340,\"name\":{\"507\":{}},\"parent\":{}}],[\"flags\",{\"_index\":231,\"name\":{\"292\":{}},\"parent\":{}}],[\"flip\",{\"_index\":289,\"name\":{\"425\":{}},\"parent\":{}}],[\"font\",{\"_index\":54,\"name\":{\"78\":{},\"238\":{}},\"parent\":{}}],[\"gear\",{\"_index\":71,\"name\":{\"100\":{}},\"parent\":{}}],[\"gender\",{\"_index\":244,\"name\":{\"308\":{},\"474\":{}},\"parent\":{}}],[\"genderscore\",{\"_index\":323,\"name\":{\"475\":{}},\"parent\":{}}],[\"genericconfig\",{\"_index\":256,\"name\":{\"322\":{}},\"parent\":{\"323\":{},\"324\":{},\"325\":{},\"326\":{}}}],[\"gesture\",{\"_index\":17,\"name\":{\"22\":{},\"65\":{},\"456\":{},\"537\":{}},\"parent\":{}}],[\"gestureconfig\",{\"_index\":302,\"name\":{\"439\":{}},\"parent\":{\"440\":{}}}],[\"gestureresult\",{\"_index\":344,\"name\":{\"521\":{}},\"parent\":{}}],[\"gestures\",{\"_index\":350,\"name\":{\"530\":{}},\"parent\":{}}],[\"getcontext\",{\"_index\":143,\"name\":{\"182\":{}},\"parent\":{}}],[\"getimagedata\",{\"_index\":186,\"name\":{\"228\":{}},\"parent\":{}}],[\"getintermediatetensors\",{\"_index\":131,\"name\":{\"168\":{}},\"parent\":{}}],[\"getlinedash\",{\"_index\":192,\"name\":{\"235\":{}},\"parent\":{}}],[\"gettransform\",{\"_index\":151,\"name\":{\"192\":{}},\"parent\":{}}],[\"gl\",{\"_index\":26,\"name\":{\"35\":{}},\"parent\":{}}],[\"globalalpha\",{\"_index\":158,\"name\":{\"199\":{}},\"parent\":{}}],[\"globalcompositeoperation\",{\"_index\":159,\"name\":{\"200\":{}},\"parent\":{}}],[\"graphmodel\",{\"_index\":117,\"name\":{\"150\":{}},\"parent\":{\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{}}}],[\"hand\",{\"_index\":16,\"name\":{\"20\":{},\"68\":{},\"459\":{},\"536\":{}},\"parent\":{}}],[\"handconfig\",{\"_index\":280,\"name\":{\"389\":{}},\"parent\":{\"390\":{},\"391\":{},\"392\":{},\"393\":{},\"394\":{},\"395\":{},\"396\":{},\"398\":{},\"399\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{}}}],[\"handconfig.__type\",{\"_index\":282,\"name\":{},\"parent\":{\"397\":{},\"400\":{}}}],[\"handgesture\",{\"_index\":238,\"name\":{\"301\":{}},\"parent\":{}}],[\"handpose\",{\"_index\":83,\"name\":{\"112\":{}},\"parent\":{}}],[\"handresult\",{\"_index\":339,\"name\":{\"503\":{}},\"parent\":{\"504\":{},\"505\":{},\"506\":{},\"507\":{},\"508\":{},\"509\":{},\"510\":{},\"511\":{},\"512\":{},\"513\":{}}}],[\"hands\",{\"_index\":346,\"name\":{\"526\":{}},\"parent\":{}}],[\"handskeleton\",{\"_index\":84,\"name\":{\"113\":{}},\"parent\":{}}],[\"handtrack\",{\"_index\":85,\"name\":{\"114\":{}},\"parent\":{}}],[\"handtype\",{\"_index\":243,\"name\":{\"307\":{}},\"parent\":{}}],[\"height\",{\"_index\":142,\"name\":{\"181\":{},\"423\":{}},\"parent\":{}}],[\"hue\",{\"_index\":294,\"name\":{\"431\":{}},\"parent\":{}}],[\"human\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{}}}],[\"human.__type\",{\"_index\":9,\"name\":{},\"parent\":{\"8\":{},\"9\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{}}}],[\"id\",{\"_index\":91,\"name\":{\"123\":{},\"464\":{},\"497\":{},\"504\":{},\"515\":{},\"523\":{}},\"parent\":{}}],[\"image\",{\"_index\":34,\"name\":{\"46\":{},\"295\":{}},\"parent\":{}}],[\"imagedata\",{\"_index\":233,\"name\":{\"296\":{}},\"parent\":{}}],[\"imageobjects\",{\"_index\":253,\"name\":{\"319\":{}},\"parent\":{}}],[\"imagesmoothingenabled\",{\"_index\":160,\"name\":{\"201\":{}},\"parent\":{}}],[\"imagesmoothingquality\",{\"_index\":161,\"name\":{\"202\":{}},\"parent\":{}}],[\"init\",{\"_index\":38,\"name\":{\"50\":{}},\"parent\":{}}],[\"initial\",{\"_index\":215,\"name\":{\"265\":{}},\"parent\":{}}],[\"input\",{\"_index\":255,\"name\":{\"321\":{}},\"parent\":{}}],[\"inputnodes\",{\"_index\":119,\"name\":{\"153\":{}},\"parent\":{}}],[\"inputs\",{\"_index\":121,\"name\":{\"155\":{}},\"parent\":{}}],[\"iouthreshold\",{\"_index\":265,\"name\":{\"331\":{},\"392\":{},\"407\":{}},\"parent\":{}}],[\"iris\",{\"_index\":277,\"name\":{\"373\":{},\"479\":{}},\"parent\":{}}],[\"irisgesture\",{\"_index\":239,\"name\":{\"302\":{}},\"parent\":{}}],[\"isdisposed\",{\"_index\":110,\"name\":{\"142\":{}},\"parent\":{}}],[\"ispointinpath\",{\"_index\":178,\"name\":{\"220\":{}},\"parent\":{}}],[\"ispointinstroke\",{\"_index\":179,\"name\":{\"221\":{}},\"parent\":{}}],[\"kept\",{\"_index\":97,\"name\":{\"129\":{}},\"parent\":{}}],[\"kernels\",{\"_index\":232,\"name\":{\"293\":{}},\"parent\":{}}],[\"keypoints\",{\"_index\":338,\"name\":{\"501\":{},\"510\":{}},\"parent\":{}}],[\"kodachrome\",{\"_index\":298,\"name\":{\"435\":{}},\"parent\":{}}],[\"label\",{\"_index\":341,\"name\":{\"511\":{},\"518\":{}},\"parent\":{}}],[\"labelcolor\",{\"_index\":52,\"name\":{\"76\":{}},\"parent\":{}}],[\"landmarks\",{\"_index\":281,\"name\":{\"394\":{},\"513\":{}},\"parent\":{}}],[\"left\",{\"_index\":347,\"name\":{\"528\":{}},\"parent\":{}}],[\"linecap\",{\"_index\":188,\"name\":{\"230\":{}},\"parent\":{}}],[\"linedashoffset\",{\"_index\":189,\"name\":{\"231\":{}},\"parent\":{}}],[\"lineheight\",{\"_index\":55,\"name\":{\"79\":{}},\"parent\":{}}],[\"linejoin\",{\"_index\":190,\"name\":{\"232\":{}},\"parent\":{}}],[\"lineto\",{\"_index\":202,\"name\":{\"246\":{}},\"parent\":{}}],[\"linewidth\",{\"_index\":56,\"name\":{\"80\":{},\"233\":{}},\"parent\":{}}],[\"live\",{\"_index\":326,\"name\":{\"481\":{}},\"parent\":{}}],[\"liveness\",{\"_index\":86,\"name\":{\"115\":{},\"377\":{}},\"parent\":{}}],[\"load\",{\"_index\":39,\"name\":{\"51\":{},\"95\":{},\"162\":{}},\"parent\":{}}],[\"loadsync\",{\"_index\":126,\"name\":{\"163\":{}},\"parent\":{}}],[\"mask\",{\"_index\":266,\"name\":{\"332\":{}},\"parent\":{}}],[\"match\",{\"_index\":32,\"name\":{\"43\":{},\"58\":{},\"61\":{}},\"parent\":{\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{}}}],[\"matchoptions\",{\"_index\":47,\"name\":{\"63\":{}},\"parent\":{}}],[\"maxdetected\",{\"_index\":263,\"name\":{\"329\":{},\"383\":{},\"393\":{},\"408\":{}},\"parent\":{}}],[\"measuretext\",{\"_index\":182,\"name\":{\"224\":{}},\"parent\":{}}],[\"mesh\",{\"_index\":276,\"name\":{\"372\":{},\"470\":{}},\"parent\":{}}],[\"meshraw\",{\"_index\":320,\"name\":{\"471\":{}},\"parent\":{}}],[\"metadata\",{\"_index\":124,\"name\":{\"158\":{}},\"parent\":{}}],[\"minconfidence\",{\"_index\":264,\"name\":{\"330\":{},\"349\":{},\"355\":{},\"384\":{},\"391\":{},\"406\":{}},\"parent\":{}}],[\"miterlimit\",{\"_index\":191,\"name\":{\"234\":{}},\"parent\":{}}],[\"mobilefacenet\",{\"_index\":76,\"name\":{\"105\":{}},\"parent\":{}}],[\"model\",{\"_index\":230,\"name\":{\"291\":{}},\"parent\":{}}],[\"modelbasepath\",{\"_index\":309,\"name\":{\"450\":{}},\"parent\":{}}],[\"modelpath\",{\"_index\":258,\"name\":{\"324\":{},\"335\":{},\"340\":{},\"345\":{},\"351\":{},\"357\":{},\"362\":{},\"367\":{},\"379\":{},\"386\":{},\"397\":{},\"400\":{},\"402\":{},\"410\":{},\"416\":{}},\"parent\":{}}],[\"models\",{\"_index\":68,\"name\":{\"93\":{},\"97\":{},\"256\":{}},\"parent\":{\"94\":{},\"95\":{},\"96\":{},\"97\":{}}}],[\"models.models\",{\"_index\":69,\"name\":{},\"parent\":{\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{}}}],[\"modelsignature\",{\"_index\":125,\"name\":{\"160\":{}},\"parent\":{}}],[\"modelversion\",{\"_index\":118,\"name\":{\"152\":{}},\"parent\":{}}],[\"movenet\",{\"_index\":87,\"name\":{\"116\":{}},\"parent\":{}}],[\"moveto\",{\"_index\":203,\"name\":{\"247\":{}},\"parent\":{}}],[\"multithread\",{\"_index\":224,\"name\":{\"277\":{}},\"parent\":{}}],[\"nanodet\",{\"_index\":88,\"name\":{\"117\":{}},\"parent\":{}}],[\"negative\",{\"_index\":295,\"name\":{\"432\":{}},\"parent\":{}}],[\"next\",{\"_index\":41,\"name\":{\"53\":{}},\"parent\":{}}],[\"node\",{\"_index\":210,\"name\":{\"260\":{}},\"parent\":{}}],[\"now\",{\"_index\":33,\"name\":{\"45\":{}},\"parent\":{}}],[\"object\",{\"_index\":18,\"name\":{\"24\":{},\"69\":{},\"460\":{},\"538\":{}},\"parent\":{}}],[\"objectconfig\",{\"_index\":284,\"name\":{\"405\":{}},\"parent\":{\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{},\"411\":{},\"412\":{}}}],[\"objectresult\",{\"_index\":342,\"name\":{\"514\":{}},\"parent\":{\"515\":{},\"516\":{},\"517\":{},\"518\":{},\"519\":{},\"520\":{}}}],[\"objecttype\",{\"_index\":249,\"name\":{\"313\":{}},\"parent\":{}}],[\"offscreen\",{\"_index\":218,\"name\":{\"270\":{}},\"parent\":{}}],[\"offscreencanvas\",{\"_index\":140,\"name\":{\"179\":{}},\"parent\":{\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{}}}],[\"offscreencanvasrenderingcontext2d\",{\"_index\":149,\"name\":{\"188\":{}},\"parent\":{\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"202\":{},\"203\":{},\"204\":{},\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{}}}],[\"options\",{\"_index\":21,\"name\":{\"30\":{},\"92\":{}},\"parent\":{}}],[\"outputnodes\",{\"_index\":120,\"name\":{\"154\":{}},\"parent\":{}}],[\"outputs\",{\"_index\":122,\"name\":{\"156\":{}},\"parent\":{}}],[\"part\",{\"_index\":334,\"name\":{\"491\":{}},\"parent\":{}}],[\"perfadd\",{\"_index\":219,\"name\":{\"271\":{}},\"parent\":{}}],[\"performance\",{\"_index\":25,\"name\":{\"34\":{},\"539\":{}},\"parent\":{}}],[\"person\",{\"_index\":19,\"name\":{\"26\":{},\"70\":{}},\"parent\":{}}],[\"personresult\",{\"_index\":345,\"name\":{\"522\":{}},\"parent\":{\"523\":{},\"524\":{},\"525\":{},\"526\":{},\"527\":{},\"530\":{},\"531\":{},\"532\":{}}}],[\"personresult.__type\",{\"_index\":348,\"name\":{},\"parent\":{\"528\":{},\"529\":{}}}],[\"persons\",{\"_index\":352,\"name\":{\"542\":{}},\"parent\":{}}],[\"pixelate\",{\"_index\":301,\"name\":{\"438\":{}},\"parent\":{}}],[\"platform\",{\"_index\":212,\"name\":{\"262\":{}},\"parent\":{}}],[\"point\",{\"_index\":208,\"name\":{\"255\":{}},\"parent\":{}}],[\"pointsize\",{\"_index\":57,\"name\":{\"81\":{}},\"parent\":{}}],[\"polaroid\",{\"_index\":300,\"name\":{\"437\":{}},\"parent\":{}}],[\"posenet\",{\"_index\":89,\"name\":{\"118\":{}},\"parent\":{}}],[\"position\",{\"_index\":335,\"name\":{\"492\":{}},\"parent\":{}}],[\"positionraw\",{\"_index\":336,\"name\":{\"493\":{}},\"parent\":{}}],[\"predict\",{\"_index\":128,\"name\":{\"165\":{}},\"parent\":{}}],[\"print\",{\"_index\":112,\"name\":{\"144\":{}},\"parent\":{}}],[\"process\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"profile\",{\"_index\":43,\"name\":{\"55\":{}},\"parent\":{}}],[\"putimagedata\",{\"_index\":187,\"name\":{\"229\":{}},\"parent\":{}}],[\"quadraticcurveto\",{\"_index\":204,\"name\":{\"248\":{}},\"parent\":{}}],[\"r0\",{\"_index\":133,\"name\":{\"172\":{}},\"parent\":{}}],[\"r1\",{\"_index\":134,\"name\":{\"173\":{}},\"parent\":{}}],[\"r2\",{\"_index\":135,\"name\":{\"174\":{}},\"parent\":{}}],[\"r3\",{\"_index\":136,\"name\":{\"175\":{}},\"parent\":{}}],[\"r4\",{\"_index\":137,\"name\":{\"176\":{}},\"parent\":{}}],[\"r5\",{\"_index\":138,\"name\":{\"177\":{}},\"parent\":{}}],[\"r6\",{\"_index\":139,\"name\":{\"178\":{}},\"parent\":{}}],[\"race\",{\"_index\":245,\"name\":{\"309\":{},\"477\":{}},\"parent\":{}}],[\"rank\",{\"_index\":100,\"name\":{\"132\":{},\"171\":{}},\"parent\":{\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{}}}],[\"ranktype\",{\"_index\":96,\"name\":{\"128\":{}},\"parent\":{}}],[\"real\",{\"_index\":325,\"name\":{\"480\":{}},\"parent\":{}}],[\"rect\",{\"_index\":205,\"name\":{\"249\":{}},\"parent\":{}}],[\"removeeventlistener\",{\"_index\":148,\"name\":{\"187\":{}},\"parent\":{}}],[\"renderer\",{\"_index\":226,\"name\":{\"283\":{}},\"parent\":{}}],[\"reset\",{\"_index\":28,\"name\":{\"37\":{},\"94\":{}},\"parent\":{}}],[\"resettransform\",{\"_index\":152,\"name\":{\"193\":{}},\"parent\":{}}],[\"restore\",{\"_index\":150,\"name\":{\"190\":{}},\"parent\":{}}],[\"result\",{\"_index\":4,\"name\":{\"4\":{},\"533\":{}},\"parent\":{\"534\":{},\"535\":{},\"536\":{},\"537\":{},\"538\":{},\"539\":{},\"540\":{},\"541\":{},\"542\":{},\"543\":{}}}],[\"return\",{\"_index\":267,\"name\":{\"333\":{},\"424\":{}},\"parent\":{}}],[\"right\",{\"_index\":349,\"name\":{\"529\":{}},\"parent\":{}}],[\"rotate\",{\"_index\":153,\"name\":{\"194\":{}},\"parent\":{}}],[\"rotation\",{\"_index\":262,\"name\":{\"328\":{},\"390\":{},\"482\":{}},\"parent\":{}}],[\"roundrect\",{\"_index\":58,\"name\":{\"82\":{}},\"parent\":{}}],[\"saturation\",{\"_index\":293,\"name\":{\"430\":{}},\"parent\":{}}],[\"save\",{\"_index\":127,\"name\":{\"164\":{},\"191\":{}},\"parent\":{}}],[\"scale\",{\"_index\":154,\"name\":{\"195\":{}},\"parent\":{}}],[\"scopeid\",{\"_index\":98,\"name\":{\"130\":{}},\"parent\":{}}],[\"score\",{\"_index\":316,\"name\":{\"465\":{},\"495\":{},\"498\":{},\"505\":{},\"516\":{}},\"parent\":{}}],[\"segmentation\",{\"_index\":35,\"name\":{\"47\":{},\"119\":{},\"461\":{}},\"parent\":{}}],[\"segmentationconfig\",{\"_index\":285,\"name\":{\"413\":{}},\"parent\":{\"414\":{},\"415\":{},\"416\":{},\"417\":{},\"418\":{}}}],[\"sepia\",{\"_index\":296,\"name\":{\"433\":{}},\"parent\":{}}],[\"setlinedash\",{\"_index\":193,\"name\":{\"236\":{}},\"parent\":{}}],[\"settransform\",{\"_index\":155,\"name\":{\"196\":{}},\"parent\":{}}],[\"shadowblur\",{\"_index\":168,\"name\":{\"209\":{}},\"parent\":{}}],[\"shadowcolor\",{\"_index\":53,\"name\":{\"77\":{},\"210\":{}},\"parent\":{}}],[\"shadowoffsetx\",{\"_index\":169,\"name\":{\"211\":{}},\"parent\":{}}],[\"shadowoffsety\",{\"_index\":170,\"name\":{\"212\":{}},\"parent\":{}}],[\"shape\",{\"_index\":93,\"name\":{\"125\":{}},\"parent\":{}}],[\"sharpness\",{\"_index\":292,\"name\":{\"428\":{}},\"parent\":{}}],[\"simd\",{\"_index\":223,\"name\":{\"276\":{}},\"parent\":{}}],[\"similarity\",{\"_index\":30,\"name\":{\"39\":{},\"60\":{}},\"parent\":{}}],[\"size\",{\"_index\":94,\"name\":{\"126\":{}},\"parent\":{}}],[\"skeleton\",{\"_index\":283,\"name\":{\"398\":{}},\"parent\":{}}],[\"skipallowed\",{\"_index\":313,\"name\":{\"454\":{}},\"parent\":{}}],[\"skipframes\",{\"_index\":259,\"name\":{\"325\":{},\"336\":{},\"341\":{},\"346\":{},\"352\":{},\"358\":{},\"363\":{},\"368\":{},\"380\":{},\"387\":{},\"403\":{},\"411\":{},\"417\":{}},\"parent\":{}}],[\"skiptime\",{\"_index\":260,\"name\":{\"326\":{},\"337\":{},\"342\":{},\"347\":{},\"353\":{},\"359\":{},\"364\":{},\"369\":{},\"381\":{},\"388\":{},\"404\":{},\"412\":{},\"418\":{}},\"parent\":{}}],[\"ssrnetage\",{\"_index\":70,\"name\":{\"99\":{}},\"parent\":{}}],[\"ssrnetgender\",{\"_index\":82,\"name\":{\"111\":{}},\"parent\":{}}],[\"state\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"strides\",{\"_index\":99,\"name\":{\"131\":{}},\"parent\":{}}],[\"stroke\",{\"_index\":180,\"name\":{\"222\":{}},\"parent\":{}}],[\"strokerect\",{\"_index\":174,\"name\":{\"216\":{}},\"parent\":{}}],[\"strokestyle\",{\"_index\":163,\"name\":{\"204\":{}},\"parent\":{}}],[\"stroketext\",{\"_index\":183,\"name\":{\"225\":{}},\"parent\":{}}],[\"supported\",{\"_index\":221,\"name\":{\"274\":{},\"280\":{},\"286\":{}},\"parent\":{}}],[\"technicolor\",{\"_index\":299,\"name\":{\"436\":{}},\"parent\":{}}],[\"tensor\",{\"_index\":8,\"name\":{\"8\":{},\"121\":{},\"148\":{},\"483\":{}},\"parent\":{\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{}}}],[\"tensorlike\",{\"_index\":116,\"name\":{\"149\":{}},\"parent\":{}}],[\"textalign\",{\"_index\":195,\"name\":{\"239\":{}},\"parent\":{}}],[\"textbaseline\",{\"_index\":196,\"name\":{\"240\":{}},\"parent\":{}}],[\"tf\",{\"_index\":11,\"name\":{\"10\":{}},\"parent\":{}}],[\"tfjs\",{\"_index\":216,\"name\":{\"267\":{}},\"parent\":{}}],[\"throwifdisposed\",{\"_index\":111,\"name\":{\"143\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":351,\"name\":{\"541\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":114,\"name\":{\"146\":{}},\"parent\":{}}],[\"transfertoimagebitmap\",{\"_index\":145,\"name\":{\"184\":{}},\"parent\":{}}],[\"transform\",{\"_index\":156,\"name\":{\"197\":{}},\"parent\":{}}],[\"translate\",{\"_index\":157,\"name\":{\"198\":{}},\"parent\":{}}],[\"updatebackend\",{\"_index\":234,\"name\":{\"297\":{}},\"parent\":{}}],[\"updatecpu\",{\"_index\":235,\"name\":{\"298\":{}},\"parent\":{}}],[\"usecurves\",{\"_index\":67,\"name\":{\"91\":{}},\"parent\":{}}],[\"usedepth\",{\"_index\":66,\"name\":{\"90\":{}},\"parent\":{}}],[\"validate\",{\"_index\":29,\"name\":{\"38\":{},\"96\":{}},\"parent\":{}}],[\"variable\",{\"_index\":115,\"name\":{\"147\":{}},\"parent\":{}}],[\"version\",{\"_index\":2,\"name\":{\"2\":{},\"269\":{},\"282\":{}},\"parent\":{}}],[\"vintage\",{\"_index\":297,\"name\":{\"434\":{}},\"parent\":{}}],[\"warmup\",{\"_index\":42,\"name\":{\"54\":{},\"449\":{}},\"parent\":{}}],[\"warmuptype\",{\"_index\":304,\"name\":{\"442\":{}},\"parent\":{}}],[\"wasm\",{\"_index\":220,\"name\":{\"272\":{}},\"parent\":{}}],[\"wasmpath\",{\"_index\":305,\"name\":{\"445\":{}},\"parent\":{}}],[\"wasmplatformfetch\",{\"_index\":306,\"name\":{\"446\":{}},\"parent\":{}}],[\"webgl\",{\"_index\":225,\"name\":{\"278\":{}},\"parent\":{}}],[\"webgpu\",{\"_index\":227,\"name\":{\"284\":{}},\"parent\":{}}],[\"weights\",{\"_index\":123,\"name\":{\"157\":{}},\"parent\":{}}],[\"width\",{\"_index\":141,\"name\":{\"180\":{},\"422\":{}},\"parent\":{}}],[\"worker\",{\"_index\":211,\"name\":{\"261\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"Human\",\"url\":\"classes/Human.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Human.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":2,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Human.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":3,\"kind\":1024,\"name\":\"config\",\"url\":\"classes/Human.html#config\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":4,\"kind\":1024,\"name\":\"result\",\"url\":\"classes/Human.html#result\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":5,\"kind\":1024,\"name\":\"state\",\"url\":\"classes/Human.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":6,\"kind\":1024,\"name\":\"process\",\"url\":\"classes/Human.html#process\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":7,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":8,\"kind\":1024,\"name\":\"tensor\",\"url\":\"classes/Human.html#__type-11.tensor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":9,\"kind\":1024,\"name\":\"canvas\",\"url\":\"classes/Human.html#__type-11.canvas-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":10,\"kind\":1024,\"name\":\"tf\",\"url\":\"classes/Human.html#tf\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":11,\"kind\":1024,\"name\":\"env\",\"url\":\"classes/Human.html#env\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":12,\"kind\":1024,\"name\":\"draw\",\"url\":\"classes/Human.html#draw\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":13,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":14,\"kind\":1024,\"name\":\"canvas\",\"url\":\"classes/Human.html#__type-1.canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":15,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":16,\"kind\":1024,\"name\":\"face\",\"url\":\"classes/Human.html#__type-1.face\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":17,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":18,\"kind\":1024,\"name\":\"body\",\"url\":\"classes/Human.html#__type-1.body\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":19,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":20,\"kind\":1024,\"name\":\"hand\",\"url\":\"classes/Human.html#__type-1.hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":21,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":22,\"kind\":1024,\"name\":\"gesture\",\"url\":\"classes/Human.html#__type-1.gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":23,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":24,\"kind\":1024,\"name\":\"object\",\"url\":\"classes/Human.html#__type-1.object\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":25,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":26,\"kind\":1024,\"name\":\"person\",\"url\":\"classes/Human.html#__type-1.person\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":27,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":28,\"kind\":1024,\"name\":\"all\",\"url\":\"classes/Human.html#__type-1.all\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":29,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":30,\"kind\":1024,\"name\":\"options\",\"url\":\"classes/Human.html#__type-1.options\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Human.__type\"},{\"id\":31,\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Human.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":32,\"kind\":1024,\"name\":\"faceTriangulation\",\"url\":\"classes/Human.html#faceTriangulation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":33,\"kind\":1024,\"name\":\"faceUVMap\",\"url\":\"classes/Human.html#faceUVMap\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":34,\"kind\":1024,\"name\":\"performance\",\"url\":\"classes/Human.html#performance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":35,\"kind\":1024,\"name\":\"gl\",\"url\":\"classes/Human.html#gl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":36,\"kind\":2048,\"name\":\"analyze\",\"url\":\"classes/Human.html#analyze\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":37,\"kind\":2048,\"name\":\"reset\",\"url\":\"classes/Human.html#reset\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":38,\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/Human.html#validate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":39,\"kind\":1024,\"name\":\"similarity\",\"url\":\"classes/Human.html#similarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":40,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":41,\"kind\":1024,\"name\":\"distance\",\"url\":\"classes/Human.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":42,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":43,\"kind\":1024,\"name\":\"match\",\"url\":\"classes/Human.html#match\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":44,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Human.html#__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":45,\"kind\":2048,\"name\":\"now\",\"url\":\"classes/Human.html#now\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":46,\"kind\":2048,\"name\":\"image\",\"url\":\"classes/Human.html#image\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":47,\"kind\":2048,\"name\":\"segmentation\",\"url\":\"classes/Human.html#segmentation\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":48,\"kind\":2048,\"name\":\"enhance\",\"url\":\"classes/Human.html#enhance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":49,\"kind\":2048,\"name\":\"compare\",\"url\":\"classes/Human.html#compare\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":50,\"kind\":2048,\"name\":\"init\",\"url\":\"classes/Human.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":51,\"kind\":2048,\"name\":\"load\",\"url\":\"classes/Human.html#load\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":52,\"kind\":2048,\"name\":\"emit\",\"url\":\"classes/Human.html#emit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":53,\"kind\":2048,\"name\":\"next\",\"url\":\"classes/Human.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":54,\"kind\":2048,\"name\":\"warmup\",\"url\":\"classes/Human.html#warmup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":55,\"kind\":2048,\"name\":\"profile\",\"url\":\"classes/Human.html#profile\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":56,\"kind\":2048,\"name\":\"detect\",\"url\":\"classes/Human.html#detect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Human\"},{\"id\":57,\"kind\":16777216,\"name\":\"default\",\"url\":\"index.html#default\",\"classes\":\"tsd-kind-reference\"},{\"id\":58,\"kind\":4,\"name\":\"match\",\"url\":\"modules/match.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":59,\"kind\":64,\"name\":\"distance\",\"url\":\"modules/match.html#distance\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":60,\"kind\":64,\"name\":\"similarity\",\"url\":\"modules/match.html#similarity\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":61,\"kind\":64,\"name\":\"match\",\"url\":\"modules/match.html#match-1\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":62,\"kind\":4194304,\"name\":\"Descriptor\",\"url\":\"modules/match.html#Descriptor\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":63,\"kind\":4194304,\"name\":\"MatchOptions\",\"url\":\"modules/match.html#MatchOptions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"match\"},{\"id\":64,\"kind\":4,\"name\":\"draw\",\"url\":\"modules/draw.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":65,\"kind\":64,\"name\":\"gesture\",\"url\":\"modules/draw.html#gesture\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":66,\"kind\":64,\"name\":\"face\",\"url\":\"modules/draw.html#face\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":67,\"kind\":64,\"name\":\"body\",\"url\":\"modules/draw.html#body\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":68,\"kind\":64,\"name\":\"hand\",\"url\":\"modules/draw.html#hand\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":69,\"kind\":64,\"name\":\"object\",\"url\":\"modules/draw.html#object\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":70,\"kind\":64,\"name\":\"person\",\"url\":\"modules/draw.html#person\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":71,\"kind\":64,\"name\":\"canvas\",\"url\":\"modules/draw.html#canvas\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":72,\"kind\":64,\"name\":\"all\",\"url\":\"modules/draw.html#all\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":73,\"kind\":4194304,\"name\":\"DrawOptions\",\"url\":\"modules/draw.html#DrawOptions\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":74,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/draw.html#DrawOptions.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"draw.DrawOptions\"},{\"id\":75,\"kind\":1024,\"name\":\"color\",\"url\":\"modules/draw.html#DrawOptions.__type.color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":76,\"kind\":1024,\"name\":\"labelColor\",\"url\":\"modules/draw.html#DrawOptions.__type.labelColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":77,\"kind\":1024,\"name\":\"shadowColor\",\"url\":\"modules/draw.html#DrawOptions.__type.shadowColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":78,\"kind\":1024,\"name\":\"font\",\"url\":\"modules/draw.html#DrawOptions.__type.font\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":79,\"kind\":1024,\"name\":\"lineHeight\",\"url\":\"modules/draw.html#DrawOptions.__type.lineHeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":80,\"kind\":1024,\"name\":\"lineWidth\",\"url\":\"modules/draw.html#DrawOptions.__type.lineWidth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":81,\"kind\":1024,\"name\":\"pointSize\",\"url\":\"modules/draw.html#DrawOptions.__type.pointSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":82,\"kind\":1024,\"name\":\"roundRect\",\"url\":\"modules/draw.html#DrawOptions.__type.roundRect\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":83,\"kind\":1024,\"name\":\"drawPoints\",\"url\":\"modules/draw.html#DrawOptions.__type.drawPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":84,\"kind\":1024,\"name\":\"drawLabels\",\"url\":\"modules/draw.html#DrawOptions.__type.drawLabels\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":85,\"kind\":1024,\"name\":\"drawGestures\",\"url\":\"modules/draw.html#DrawOptions.__type.drawGestures\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":86,\"kind\":1024,\"name\":\"drawBoxes\",\"url\":\"modules/draw.html#DrawOptions.__type.drawBoxes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":87,\"kind\":1024,\"name\":\"drawPolygons\",\"url\":\"modules/draw.html#DrawOptions.__type.drawPolygons\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":88,\"kind\":1024,\"name\":\"drawGaze\",\"url\":\"modules/draw.html#DrawOptions.__type.drawGaze\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":89,\"kind\":1024,\"name\":\"fillPolygons\",\"url\":\"modules/draw.html#DrawOptions.__type.fillPolygons\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":90,\"kind\":1024,\"name\":\"useDepth\",\"url\":\"modules/draw.html#DrawOptions.__type.useDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":91,\"kind\":1024,\"name\":\"useCurves\",\"url\":\"modules/draw.html#DrawOptions.__type.useCurves\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"draw.DrawOptions.__type\"},{\"id\":92,\"kind\":32,\"name\":\"options\",\"url\":\"modules/draw.html#options\",\"classes\":\"tsd-kind-variable tsd-parent-kind-namespace\",\"parent\":\"draw\"},{\"id\":93,\"kind\":4,\"name\":\"models\",\"url\":\"modules/models.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":94,\"kind\":64,\"name\":\"reset\",\"url\":\"modules/models.html#reset\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":95,\"kind\":64,\"name\":\"load\",\"url\":\"modules/models.html#load\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":96,\"kind\":64,\"name\":\"validate\",\"url\":\"modules/models.html#validate\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":97,\"kind\":128,\"name\":\"Models\",\"url\":\"classes/models.Models.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-namespace\",\"parent\":\"models\"},{\"id\":98,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/models.Models.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":99,\"kind\":1024,\"name\":\"ssrnetage\",\"url\":\"classes/models.Models.html#ssrnetage\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":100,\"kind\":1024,\"name\":\"gear\",\"url\":\"classes/models.Models.html#gear\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":101,\"kind\":1024,\"name\":\"blazeposedetect\",\"url\":\"classes/models.Models.html#blazeposedetect\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":102,\"kind\":1024,\"name\":\"blazepose\",\"url\":\"classes/models.Models.html#blazepose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":103,\"kind\":1024,\"name\":\"centernet\",\"url\":\"classes/models.Models.html#centernet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":104,\"kind\":1024,\"name\":\"efficientpose\",\"url\":\"classes/models.Models.html#efficientpose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":105,\"kind\":1024,\"name\":\"mobilefacenet\",\"url\":\"classes/models.Models.html#mobilefacenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":106,\"kind\":1024,\"name\":\"emotion\",\"url\":\"classes/models.Models.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":107,\"kind\":1024,\"name\":\"facedetect\",\"url\":\"classes/models.Models.html#facedetect\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":108,\"kind\":1024,\"name\":\"faceiris\",\"url\":\"classes/models.Models.html#faceiris\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":109,\"kind\":1024,\"name\":\"facemesh\",\"url\":\"classes/models.Models.html#facemesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":110,\"kind\":1024,\"name\":\"faceres\",\"url\":\"classes/models.Models.html#faceres\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":111,\"kind\":1024,\"name\":\"ssrnetgender\",\"url\":\"classes/models.Models.html#ssrnetgender\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":112,\"kind\":1024,\"name\":\"handpose\",\"url\":\"classes/models.Models.html#handpose\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":113,\"kind\":1024,\"name\":\"handskeleton\",\"url\":\"classes/models.Models.html#handskeleton\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":114,\"kind\":1024,\"name\":\"handtrack\",\"url\":\"classes/models.Models.html#handtrack\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":115,\"kind\":1024,\"name\":\"liveness\",\"url\":\"classes/models.Models.html#liveness\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":116,\"kind\":1024,\"name\":\"movenet\",\"url\":\"classes/models.Models.html#movenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":117,\"kind\":1024,\"name\":\"nanodet\",\"url\":\"classes/models.Models.html#nanodet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":118,\"kind\":1024,\"name\":\"posenet\",\"url\":\"classes/models.Models.html#posenet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":119,\"kind\":1024,\"name\":\"segmentation\",\"url\":\"classes/models.Models.html#segmentation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":120,\"kind\":1024,\"name\":\"antispoof\",\"url\":\"classes/models.Models.html#antispoof\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"models.Models\"},{\"id\":121,\"kind\":128,\"name\":\"Tensor\",\"url\":\"classes/Tensor.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":122,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Tensor.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":123,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/Tensor.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":124,\"kind\":1024,\"name\":\"dataId\",\"url\":\"classes/Tensor.html#dataId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":125,\"kind\":1024,\"name\":\"shape\",\"url\":\"classes/Tensor.html#shape\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":126,\"kind\":1024,\"name\":\"size\",\"url\":\"classes/Tensor.html#size\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":127,\"kind\":1024,\"name\":\"dtype\",\"url\":\"classes/Tensor.html#dtype\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":128,\"kind\":1024,\"name\":\"rankType\",\"url\":\"classes/Tensor.html#rankType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":129,\"kind\":1024,\"name\":\"kept\",\"url\":\"classes/Tensor.html#kept\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":130,\"kind\":1024,\"name\":\"scopeId\",\"url\":\"classes/Tensor.html#scopeId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":131,\"kind\":1024,\"name\":\"strides\",\"url\":\"classes/Tensor.html#strides\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":132,\"kind\":1024,\"name\":\"rank\",\"url\":\"classes/Tensor.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":133,\"kind\":2048,\"name\":\"buffer\",\"url\":\"classes/Tensor.html#buffer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":134,\"kind\":2048,\"name\":\"bufferSync\",\"url\":\"classes/Tensor.html#bufferSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":135,\"kind\":2048,\"name\":\"array\",\"url\":\"classes/Tensor.html#array\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":136,\"kind\":2048,\"name\":\"arraySync\",\"url\":\"classes/Tensor.html#arraySync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":137,\"kind\":2048,\"name\":\"data\",\"url\":\"classes/Tensor.html#data\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":138,\"kind\":2048,\"name\":\"dataToGPU\",\"url\":\"classes/Tensor.html#dataToGPU\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":139,\"kind\":2048,\"name\":\"dataSync\",\"url\":\"classes/Tensor.html#dataSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":140,\"kind\":2048,\"name\":\"bytes\",\"url\":\"classes/Tensor.html#bytes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":141,\"kind\":2048,\"name\":\"dispose\",\"url\":\"classes/Tensor.html#dispose\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":142,\"kind\":1024,\"name\":\"isDisposed\",\"url\":\"classes/Tensor.html#isDisposed\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":143,\"kind\":2048,\"name\":\"throwIfDisposed\",\"url\":\"classes/Tensor.html#throwIfDisposed\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":144,\"kind\":2048,\"name\":\"print\",\"url\":\"classes/Tensor.html#print\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":145,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Tensor.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Tensor\"},{\"id\":146,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/Tensor.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":147,\"kind\":2048,\"name\":\"variable\",\"url\":\"classes/Tensor.html#variable\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Tensor\"},{\"id\":148,\"kind\":4,\"name\":\"Tensor\",\"url\":\"modules/Tensor.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":149,\"kind\":4194304,\"name\":\"TensorLike\",\"url\":\"index.html#TensorLike\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":150,\"kind\":128,\"name\":\"GraphModel\",\"url\":\"classes/GraphModel.html\",\"classes\":\"tsd-kind-class\"},{\"id\":151,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/GraphModel.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":152,\"kind\":1024,\"name\":\"modelVersion\",\"url\":\"classes/GraphModel.html#modelVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":153,\"kind\":1024,\"name\":\"inputNodes\",\"url\":\"classes/GraphModel.html#inputNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":154,\"kind\":1024,\"name\":\"outputNodes\",\"url\":\"classes/GraphModel.html#outputNodes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":155,\"kind\":1024,\"name\":\"inputs\",\"url\":\"classes/GraphModel.html#inputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":156,\"kind\":1024,\"name\":\"outputs\",\"url\":\"classes/GraphModel.html#outputs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":157,\"kind\":1024,\"name\":\"weights\",\"url\":\"classes/GraphModel.html#weights\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":158,\"kind\":1024,\"name\":\"metadata\",\"url\":\"classes/GraphModel.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":159,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GraphModel.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":160,\"kind\":1024,\"name\":\"modelSignature\",\"url\":\"classes/GraphModel.html#modelSignature\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":161,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/GraphModel.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":162,\"kind\":2048,\"name\":\"load\",\"url\":\"classes/GraphModel.html#load\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":163,\"kind\":2048,\"name\":\"loadSync\",\"url\":\"classes/GraphModel.html#loadSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":164,\"kind\":2048,\"name\":\"save\",\"url\":\"classes/GraphModel.html#save\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":165,\"kind\":2048,\"name\":\"predict\",\"url\":\"classes/GraphModel.html#predict\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":166,\"kind\":2048,\"name\":\"execute\",\"url\":\"classes/GraphModel.html#execute\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":167,\"kind\":2048,\"name\":\"executeAsync\",\"url\":\"classes/GraphModel.html#executeAsync\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":168,\"kind\":2048,\"name\":\"getIntermediateTensors\",\"url\":\"classes/GraphModel.html#getIntermediateTensors\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":169,\"kind\":2048,\"name\":\"disposeIntermediateTensors\",\"url\":\"classes/GraphModel.html#disposeIntermediateTensors\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":170,\"kind\":2048,\"name\":\"dispose\",\"url\":\"classes/GraphModel.html#dispose\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"GraphModel\"},{\"id\":171,\"kind\":8,\"name\":\"Rank\",\"url\":\"enums/Rank.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":172,\"kind\":16,\"name\":\"R0\",\"url\":\"enums/Rank.html#R0\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":173,\"kind\":16,\"name\":\"R1\",\"url\":\"enums/Rank.html#R1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":174,\"kind\":16,\"name\":\"R2\",\"url\":\"enums/Rank.html#R2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":175,\"kind\":16,\"name\":\"R3\",\"url\":\"enums/Rank.html#R3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":176,\"kind\":16,\"name\":\"R4\",\"url\":\"enums/Rank.html#R4\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":177,\"kind\":16,\"name\":\"R5\",\"url\":\"enums/Rank.html#R5\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":178,\"kind\":16,\"name\":\"R6\",\"url\":\"enums/Rank.html#R6\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Rank\"},{\"id\":179,\"kind\":16777216,\"name\":\"DrawOptions\",\"url\":\"index.html#DrawOptions\",\"classes\":\"tsd-kind-reference\"},{\"id\":180,\"kind\":16777216,\"name\":\"Descriptor\",\"url\":\"index.html#Descriptor\",\"classes\":\"tsd-kind-reference\"},{\"id\":181,\"kind\":4194304,\"name\":\"Box\",\"url\":\"index.html#Box\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":182,\"kind\":4194304,\"name\":\"Point\",\"url\":\"index.html#Point\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":183,\"kind\":16777216,\"name\":\"Models\",\"url\":\"index.html#Models\",\"classes\":\"tsd-kind-reference\"},{\"id\":184,\"kind\":128,\"name\":\"Env\",\"url\":\"classes/Env.html\",\"classes\":\"tsd-kind-class\"},{\"id\":185,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Env.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":186,\"kind\":1024,\"name\":\"browser\",\"url\":\"classes/Env.html#browser\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":187,\"kind\":1024,\"name\":\"node\",\"url\":\"classes/Env.html#node\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":188,\"kind\":1024,\"name\":\"worker\",\"url\":\"classes/Env.html#worker\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":189,\"kind\":1024,\"name\":\"platform\",\"url\":\"classes/Env.html#platform\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":190,\"kind\":1024,\"name\":\"agent\",\"url\":\"classes/Env.html#agent\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":191,\"kind\":1024,\"name\":\"backends\",\"url\":\"classes/Env.html#backends\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":192,\"kind\":1024,\"name\":\"initial\",\"url\":\"classes/Env.html#initial\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":193,\"kind\":1024,\"name\":\"filter\",\"url\":\"classes/Env.html#filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":194,\"kind\":1024,\"name\":\"tfjs\",\"url\":\"classes/Env.html#tfjs\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":195,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":196,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Env.html#__type-1.version\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":197,\"kind\":1024,\"name\":\"offscreen\",\"url\":\"classes/Env.html#offscreen\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":198,\"kind\":1024,\"name\":\"perfadd\",\"url\":\"classes/Env.html#perfadd\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":199,\"kind\":1024,\"name\":\"wasm\",\"url\":\"classes/Env.html#wasm\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":200,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":201,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-2.supported\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":202,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-2.backend\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":203,\"kind\":1024,\"name\":\"simd\",\"url\":\"classes/Env.html#__type-2.simd\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":204,\"kind\":1024,\"name\":\"multithread\",\"url\":\"classes/Env.html#__type-2.multithread\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":205,\"kind\":1024,\"name\":\"webgl\",\"url\":\"classes/Env.html#webgl\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":206,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":207,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-3.supported-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":208,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-3.backend-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":209,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/Env.html#__type-3.version-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":210,\"kind\":1024,\"name\":\"renderer\",\"url\":\"classes/Env.html#__type-3.renderer\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":211,\"kind\":1024,\"name\":\"webgpu\",\"url\":\"classes/Env.html#webgpu\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":212,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":213,\"kind\":1024,\"name\":\"supported\",\"url\":\"classes/Env.html#__type-4.supported-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":214,\"kind\":1024,\"name\":\"backend\",\"url\":\"classes/Env.html#__type-4.backend-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":215,\"kind\":1024,\"name\":\"adapter\",\"url\":\"classes/Env.html#__type-4.adapter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":216,\"kind\":1024,\"name\":\"cpu\",\"url\":\"classes/Env.html#cpu\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":217,\"kind\":65536,\"name\":\"__type\",\"url\":\"classes/Env.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":218,\"kind\":1024,\"name\":\"model\",\"url\":\"classes/Env.html#__type.model\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":219,\"kind\":1024,\"name\":\"flags\",\"url\":\"classes/Env.html#__type.flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Env.__type\"},{\"id\":220,\"kind\":1024,\"name\":\"kernels\",\"url\":\"classes/Env.html#kernels\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":221,\"kind\":1024,\"name\":\"Canvas\",\"url\":\"classes/Env.html#Canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":222,\"kind\":1024,\"name\":\"Image\",\"url\":\"classes/Env.html#Image\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":223,\"kind\":1024,\"name\":\"ImageData\",\"url\":\"classes/Env.html#ImageData\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":224,\"kind\":2048,\"name\":\"updateBackend\",\"url\":\"classes/Env.html#updateBackend\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":225,\"kind\":2048,\"name\":\"updateCPU\",\"url\":\"classes/Env.html#updateCPU\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Env\"},{\"id\":226,\"kind\":4194304,\"name\":\"FaceGesture\",\"url\":\"index.html#FaceGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":227,\"kind\":4194304,\"name\":\"BodyGesture\",\"url\":\"index.html#BodyGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":228,\"kind\":4194304,\"name\":\"HandGesture\",\"url\":\"index.html#HandGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":229,\"kind\":4194304,\"name\":\"IrisGesture\",\"url\":\"index.html#IrisGesture\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":230,\"kind\":4194304,\"name\":\"Emotion\",\"url\":\"index.html#Emotion\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":231,\"kind\":4194304,\"name\":\"Finger\",\"url\":\"index.html#Finger\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":232,\"kind\":4194304,\"name\":\"FingerCurl\",\"url\":\"index.html#FingerCurl\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":233,\"kind\":4194304,\"name\":\"FingerDirection\",\"url\":\"index.html#FingerDirection\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":234,\"kind\":4194304,\"name\":\"HandType\",\"url\":\"index.html#HandType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":235,\"kind\":4194304,\"name\":\"Gender\",\"url\":\"index.html#Gender\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":236,\"kind\":4194304,\"name\":\"Race\",\"url\":\"index.html#Race\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":237,\"kind\":4194304,\"name\":\"FaceLandmark\",\"url\":\"index.html#FaceLandmark\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":238,\"kind\":4194304,\"name\":\"BodyLandmark\",\"url\":\"index.html#BodyLandmark\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":239,\"kind\":4194304,\"name\":\"BodyAnnotation\",\"url\":\"index.html#BodyAnnotation\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":240,\"kind\":4194304,\"name\":\"ObjectType\",\"url\":\"index.html#ObjectType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":241,\"kind\":32,\"name\":\"env\",\"url\":\"index.html#env\",\"classes\":\"tsd-kind-variable\"},{\"id\":242,\"kind\":4194304,\"name\":\"Events\",\"url\":\"index.html#Events\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":243,\"kind\":4194304,\"name\":\"AnyCanvas\",\"url\":\"index.html#AnyCanvas\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":244,\"kind\":4194304,\"name\":\"AnyImage\",\"url\":\"index.html#AnyImage\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":245,\"kind\":4194304,\"name\":\"AnyVideo\",\"url\":\"index.html#AnyVideo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":246,\"kind\":4194304,\"name\":\"ImageObjects\",\"url\":\"index.html#ImageObjects\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":247,\"kind\":4194304,\"name\":\"ExternalCanvas\",\"url\":\"index.html#ExternalCanvas\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":248,\"kind\":4194304,\"name\":\"Input\",\"url\":\"index.html#Input\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":249,\"kind\":256,\"name\":\"GenericConfig\",\"url\":\"interfaces/GenericConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":250,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/GenericConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":251,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/GenericConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":252,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/GenericConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":253,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/GenericConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GenericConfig\"},{\"id\":254,\"kind\":256,\"name\":\"FaceDetectorConfig\",\"url\":\"interfaces/FaceDetectorConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":255,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/FaceDetectorConfig.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":256,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/FaceDetectorConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":257,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceDetectorConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":258,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/FaceDetectorConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":259,\"kind\":1024,\"name\":\"mask\",\"url\":\"interfaces/FaceDetectorConfig.html#mask\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":260,\"kind\":1024,\"name\":\"return\",\"url\":\"interfaces/FaceDetectorConfig.html#return\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDetectorConfig\"},{\"id\":261,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceDetectorConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":262,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceDetectorConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":263,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceDetectorConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":264,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceDetectorConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDetectorConfig\"},{\"id\":265,\"kind\":256,\"name\":\"FaceMeshConfig\",\"url\":\"interfaces/FaceMeshConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":266,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceMeshConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":267,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceMeshConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":268,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceMeshConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":269,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceMeshConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceMeshConfig\"},{\"id\":270,\"kind\":256,\"name\":\"FaceIrisConfig\",\"url\":\"interfaces/FaceIrisConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":271,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceIrisConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":272,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceIrisConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":273,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceIrisConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":274,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceIrisConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceIrisConfig\"},{\"id\":275,\"kind\":256,\"name\":\"FaceDescriptionConfig\",\"url\":\"interfaces/FaceDescriptionConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":276,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceDescriptionConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":277,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceDescriptionConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":278,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceDescriptionConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":279,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceDescriptionConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":280,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceDescriptionConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceDescriptionConfig\"},{\"id\":281,\"kind\":256,\"name\":\"FaceEmotionConfig\",\"url\":\"interfaces/FaceEmotionConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":282,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/FaceEmotionConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceEmotionConfig\"},{\"id\":283,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceEmotionConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":284,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceEmotionConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":285,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceEmotionConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":286,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceEmotionConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceEmotionConfig\"},{\"id\":287,\"kind\":256,\"name\":\"FaceAntiSpoofConfig\",\"url\":\"interfaces/FaceAntiSpoofConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":288,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":289,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":290,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":291,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceAntiSpoofConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceAntiSpoofConfig\"},{\"id\":292,\"kind\":256,\"name\":\"FaceLivenessConfig\",\"url\":\"interfaces/FaceLivenessConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":293,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceLivenessConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":294,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceLivenessConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":295,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceLivenessConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":296,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceLivenessConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceLivenessConfig\"},{\"id\":297,\"kind\":256,\"name\":\"FaceConfig\",\"url\":\"interfaces/FaceConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":298,\"kind\":1024,\"name\":\"detector\",\"url\":\"interfaces/FaceConfig.html#detector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":299,\"kind\":1024,\"name\":\"mesh\",\"url\":\"interfaces/FaceConfig.html#mesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":300,\"kind\":1024,\"name\":\"iris\",\"url\":\"interfaces/FaceConfig.html#iris\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":301,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/FaceConfig.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":302,\"kind\":1024,\"name\":\"emotion\",\"url\":\"interfaces/FaceConfig.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":303,\"kind\":1024,\"name\":\"antispoof\",\"url\":\"interfaces/FaceConfig.html#antispoof\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":304,\"kind\":1024,\"name\":\"liveness\",\"url\":\"interfaces/FaceConfig.html#liveness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceConfig\"},{\"id\":305,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FaceConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":306,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/FaceConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":307,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/FaceConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":308,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/FaceConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FaceConfig\"},{\"id\":309,\"kind\":256,\"name\":\"BodyConfig\",\"url\":\"interfaces/BodyConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":310,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/BodyConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyConfig\"},{\"id\":311,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/BodyConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyConfig\"},{\"id\":312,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/BodyConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":313,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/BodyConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":314,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/BodyConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":315,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/BodyConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BodyConfig\"},{\"id\":316,\"kind\":256,\"name\":\"HandConfig\",\"url\":\"interfaces/HandConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":317,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/HandConfig.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":318,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/HandConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":319,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/HandConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":320,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/HandConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":321,\"kind\":1024,\"name\":\"landmarks\",\"url\":\"interfaces/HandConfig.html#landmarks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":322,\"kind\":1024,\"name\":\"detector\",\"url\":\"interfaces/HandConfig.html#detector\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":323,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/HandConfig.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":324,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#__type.modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HandConfig.__type\"},{\"id\":325,\"kind\":1024,\"name\":\"skeleton\",\"url\":\"interfaces/HandConfig.html#skeleton\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":326,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/HandConfig.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"HandConfig\"},{\"id\":327,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#__type-1.modelPath-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"HandConfig.__type\"},{\"id\":328,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/HandConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":329,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/HandConfig.html#modelPath-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":330,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/HandConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":331,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/HandConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"HandConfig\"},{\"id\":332,\"kind\":256,\"name\":\"ObjectConfig\",\"url\":\"interfaces/ObjectConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":333,\"kind\":1024,\"name\":\"minConfidence\",\"url\":\"interfaces/ObjectConfig.html#minConfidence\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":334,\"kind\":1024,\"name\":\"iouThreshold\",\"url\":\"interfaces/ObjectConfig.html#iouThreshold\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":335,\"kind\":1024,\"name\":\"maxDetected\",\"url\":\"interfaces/ObjectConfig.html#maxDetected\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectConfig\"},{\"id\":336,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/ObjectConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":337,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/ObjectConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":338,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/ObjectConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":339,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/ObjectConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ObjectConfig\"},{\"id\":340,\"kind\":256,\"name\":\"SegmentationConfig\",\"url\":\"interfaces/SegmentationConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":341,\"kind\":1024,\"name\":\"blur\",\"url\":\"interfaces/SegmentationConfig.html#blur\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"SegmentationConfig\"},{\"id\":342,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/SegmentationConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":343,\"kind\":1024,\"name\":\"modelPath\",\"url\":\"interfaces/SegmentationConfig.html#modelPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":344,\"kind\":1024,\"name\":\"skipFrames\",\"url\":\"interfaces/SegmentationConfig.html#skipFrames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":345,\"kind\":1024,\"name\":\"skipTime\",\"url\":\"interfaces/SegmentationConfig.html#skipTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"SegmentationConfig\"},{\"id\":346,\"kind\":256,\"name\":\"FilterConfig\",\"url\":\"interfaces/FilterConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":347,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/FilterConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":348,\"kind\":1024,\"name\":\"equalization\",\"url\":\"interfaces/FilterConfig.html#equalization\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":349,\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/FilterConfig.html#width\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":350,\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/FilterConfig.html#height\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":351,\"kind\":1024,\"name\":\"return\",\"url\":\"interfaces/FilterConfig.html#return\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":352,\"kind\":1024,\"name\":\"flip\",\"url\":\"interfaces/FilterConfig.html#flip\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":353,\"kind\":1024,\"name\":\"brightness\",\"url\":\"interfaces/FilterConfig.html#brightness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":354,\"kind\":1024,\"name\":\"contrast\",\"url\":\"interfaces/FilterConfig.html#contrast\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":355,\"kind\":1024,\"name\":\"sharpness\",\"url\":\"interfaces/FilterConfig.html#sharpness\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":356,\"kind\":1024,\"name\":\"blur\",\"url\":\"interfaces/FilterConfig.html#blur\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":357,\"kind\":1024,\"name\":\"saturation\",\"url\":\"interfaces/FilterConfig.html#saturation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":358,\"kind\":1024,\"name\":\"hue\",\"url\":\"interfaces/FilterConfig.html#hue\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":359,\"kind\":1024,\"name\":\"negative\",\"url\":\"interfaces/FilterConfig.html#negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":360,\"kind\":1024,\"name\":\"sepia\",\"url\":\"interfaces/FilterConfig.html#sepia\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":361,\"kind\":1024,\"name\":\"vintage\",\"url\":\"interfaces/FilterConfig.html#vintage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":362,\"kind\":1024,\"name\":\"kodachrome\",\"url\":\"interfaces/FilterConfig.html#kodachrome\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":363,\"kind\":1024,\"name\":\"technicolor\",\"url\":\"interfaces/FilterConfig.html#technicolor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":364,\"kind\":1024,\"name\":\"polaroid\",\"url\":\"interfaces/FilterConfig.html#polaroid\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":365,\"kind\":1024,\"name\":\"pixelate\",\"url\":\"interfaces/FilterConfig.html#pixelate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FilterConfig\"},{\"id\":366,\"kind\":256,\"name\":\"GestureConfig\",\"url\":\"interfaces/GestureConfig.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":367,\"kind\":1024,\"name\":\"enabled\",\"url\":\"interfaces/GestureConfig.html#enabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GestureConfig\"},{\"id\":368,\"kind\":4194304,\"name\":\"BackendType\",\"url\":\"index.html#BackendType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":369,\"kind\":4194304,\"name\":\"WarmupType\",\"url\":\"index.html#WarmupType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":370,\"kind\":256,\"name\":\"Config\",\"url\":\"interfaces/Config.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":371,\"kind\":1024,\"name\":\"backend\",\"url\":\"interfaces/Config.html#backend\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":372,\"kind\":1024,\"name\":\"wasmPath\",\"url\":\"interfaces/Config.html#wasmPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":373,\"kind\":1024,\"name\":\"wasmPlatformFetch\",\"url\":\"interfaces/Config.html#wasmPlatformFetch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":374,\"kind\":1024,\"name\":\"debug\",\"url\":\"interfaces/Config.html#debug\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":375,\"kind\":1024,\"name\":\"async\",\"url\":\"interfaces/Config.html#async\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":376,\"kind\":1024,\"name\":\"warmup\",\"url\":\"interfaces/Config.html#warmup\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":377,\"kind\":1024,\"name\":\"modelBasePath\",\"url\":\"interfaces/Config.html#modelBasePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":378,\"kind\":1024,\"name\":\"cacheModels\",\"url\":\"interfaces/Config.html#cacheModels\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":379,\"kind\":1024,\"name\":\"cacheSensitivity\",\"url\":\"interfaces/Config.html#cacheSensitivity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":380,\"kind\":1024,\"name\":\"deallocate\",\"url\":\"interfaces/Config.html#deallocate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":381,\"kind\":1024,\"name\":\"skipAllowed\",\"url\":\"interfaces/Config.html#skipAllowed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":382,\"kind\":1024,\"name\":\"filter\",\"url\":\"interfaces/Config.html#filter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":383,\"kind\":1024,\"name\":\"gesture\",\"url\":\"interfaces/Config.html#gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":384,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/Config.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":385,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/Config.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":386,\"kind\":1024,\"name\":\"hand\",\"url\":\"interfaces/Config.html#hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":387,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/Config.html#object\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":388,\"kind\":1024,\"name\":\"segmentation\",\"url\":\"interfaces/Config.html#segmentation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Config\"},{\"id\":389,\"kind\":32,\"name\":\"defaults\",\"url\":\"index.html#defaults\",\"classes\":\"tsd-kind-variable\"},{\"id\":390,\"kind\":256,\"name\":\"FaceResult\",\"url\":\"interfaces/FaceResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":391,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/FaceResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":392,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/FaceResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":393,\"kind\":1024,\"name\":\"boxScore\",\"url\":\"interfaces/FaceResult.html#boxScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":394,\"kind\":1024,\"name\":\"faceScore\",\"url\":\"interfaces/FaceResult.html#faceScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":395,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/FaceResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":396,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/FaceResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":397,\"kind\":1024,\"name\":\"mesh\",\"url\":\"interfaces/FaceResult.html#mesh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":398,\"kind\":1024,\"name\":\"meshRaw\",\"url\":\"interfaces/FaceResult.html#meshRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":399,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/FaceResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":400,\"kind\":1024,\"name\":\"age\",\"url\":\"interfaces/FaceResult.html#age\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":401,\"kind\":1024,\"name\":\"gender\",\"url\":\"interfaces/FaceResult.html#gender\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":402,\"kind\":1024,\"name\":\"genderScore\",\"url\":\"interfaces/FaceResult.html#genderScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":403,\"kind\":1024,\"name\":\"emotion\",\"url\":\"interfaces/FaceResult.html#emotion\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":404,\"kind\":1024,\"name\":\"race\",\"url\":\"interfaces/FaceResult.html#race\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":405,\"kind\":1024,\"name\":\"embedding\",\"url\":\"interfaces/FaceResult.html#embedding\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":406,\"kind\":1024,\"name\":\"iris\",\"url\":\"interfaces/FaceResult.html#iris\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":407,\"kind\":1024,\"name\":\"real\",\"url\":\"interfaces/FaceResult.html#real\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":408,\"kind\":1024,\"name\":\"live\",\"url\":\"interfaces/FaceResult.html#live\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":409,\"kind\":1024,\"name\":\"rotation\",\"url\":\"interfaces/FaceResult.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":410,\"kind\":1024,\"name\":\"tensor\",\"url\":\"interfaces/FaceResult.html#tensor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FaceResult\"},{\"id\":411,\"kind\":4194304,\"name\":\"BodyLandmarkPoseNet\",\"url\":\"index.html#BodyLandmarkPoseNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":412,\"kind\":4194304,\"name\":\"BodyLandmarkMoveNet\",\"url\":\"index.html#BodyLandmarkMoveNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":413,\"kind\":4194304,\"name\":\"BodyLandmarkEfficientNet\",\"url\":\"index.html#BodyLandmarkEfficientNet\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":414,\"kind\":4194304,\"name\":\"BodyLandmarkBlazePose\",\"url\":\"index.html#BodyLandmarkBlazePose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":415,\"kind\":4194304,\"name\":\"BodyAnnotationBlazePose\",\"url\":\"index.html#BodyAnnotationBlazePose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":416,\"kind\":4194304,\"name\":\"BodyAnnotationEfficientPose\",\"url\":\"index.html#BodyAnnotationEfficientPose\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":417,\"kind\":256,\"name\":\"BodyKeypoint\",\"url\":\"interfaces/BodyKeypoint.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":418,\"kind\":1024,\"name\":\"part\",\"url\":\"interfaces/BodyKeypoint.html#part\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":419,\"kind\":1024,\"name\":\"position\",\"url\":\"interfaces/BodyKeypoint.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":420,\"kind\":1024,\"name\":\"positionRaw\",\"url\":\"interfaces/BodyKeypoint.html#positionRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":421,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/BodyKeypoint.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":422,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/BodyKeypoint.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyKeypoint\"},{\"id\":423,\"kind\":256,\"name\":\"BodyResult\",\"url\":\"interfaces/BodyResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":424,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/BodyResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":425,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/BodyResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":426,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/BodyResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":427,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/BodyResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":428,\"kind\":1024,\"name\":\"keypoints\",\"url\":\"interfaces/BodyResult.html#keypoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":429,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/BodyResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BodyResult\"},{\"id\":430,\"kind\":256,\"name\":\"HandResult\",\"url\":\"interfaces/HandResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":431,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/HandResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":432,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/HandResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":433,\"kind\":1024,\"name\":\"boxScore\",\"url\":\"interfaces/HandResult.html#boxScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":434,\"kind\":1024,\"name\":\"fingerScore\",\"url\":\"interfaces/HandResult.html#fingerScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":435,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/HandResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":436,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/HandResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":437,\"kind\":1024,\"name\":\"keypoints\",\"url\":\"interfaces/HandResult.html#keypoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":438,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/HandResult.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":439,\"kind\":1024,\"name\":\"annotations\",\"url\":\"interfaces/HandResult.html#annotations\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":440,\"kind\":1024,\"name\":\"landmarks\",\"url\":\"interfaces/HandResult.html#landmarks\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"HandResult\"},{\"id\":441,\"kind\":256,\"name\":\"ObjectResult\",\"url\":\"interfaces/ObjectResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":442,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ObjectResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":443,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/ObjectResult.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":444,\"kind\":1024,\"name\":\"class\",\"url\":\"interfaces/ObjectResult.html#class\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":445,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ObjectResult.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":446,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/ObjectResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":447,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/ObjectResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ObjectResult\"},{\"id\":448,\"kind\":4194304,\"name\":\"GestureResult\",\"url\":\"index.html#GestureResult\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":449,\"kind\":256,\"name\":\"PersonResult\",\"url\":\"interfaces/PersonResult.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":450,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PersonResult.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":451,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/PersonResult.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":452,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/PersonResult.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":453,\"kind\":1024,\"name\":\"hands\",\"url\":\"interfaces/PersonResult.html#hands\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":454,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PersonResult.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":455,\"kind\":1024,\"name\":\"left\",\"url\":\"interfaces/PersonResult.html#__type.left\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PersonResult.__type\"},{\"id\":456,\"kind\":1024,\"name\":\"right\",\"url\":\"interfaces/PersonResult.html#__type.right\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PersonResult.__type\"},{\"id\":457,\"kind\":1024,\"name\":\"gestures\",\"url\":\"interfaces/PersonResult.html#gestures\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":458,\"kind\":1024,\"name\":\"box\",\"url\":\"interfaces/PersonResult.html#box\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":459,\"kind\":1024,\"name\":\"boxRaw\",\"url\":\"interfaces/PersonResult.html#boxRaw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PersonResult\"},{\"id\":460,\"kind\":256,\"name\":\"Result\",\"url\":\"interfaces/Result.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":461,\"kind\":1024,\"name\":\"face\",\"url\":\"interfaces/Result.html#face\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":462,\"kind\":1024,\"name\":\"body\",\"url\":\"interfaces/Result.html#body\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":463,\"kind\":1024,\"name\":\"hand\",\"url\":\"interfaces/Result.html#hand\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":464,\"kind\":1024,\"name\":\"gesture\",\"url\":\"interfaces/Result.html#gesture\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":465,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/Result.html#object\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":466,\"kind\":1024,\"name\":\"performance\",\"url\":\"interfaces/Result.html#performance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":467,\"kind\":1024,\"name\":\"canvas\",\"url\":\"interfaces/Result.html#canvas\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":468,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/Result.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":469,\"kind\":1024,\"name\":\"persons\",\"url\":\"interfaces/Result.html#persons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"},{\"id\":470,\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/Result.html#error\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Result\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,25.063]],[\"parent/0\",[]],[\"name/1\",[1,44.522]],[\"parent/1\",[0,2.334]],[\"name/2\",[2,49.042]],[\"parent/2\",[0,2.334]],[\"name/3\",[3,31.366]],[\"parent/3\",[0,2.334]],[\"name/4\",[4,36.313]],[\"parent/4\",[0,2.334]],[\"name/5\",[5,57.515]],[\"parent/5\",[0,2.334]],[\"name/6\",[6,57.515]],[\"parent/6\",[0,2.334]],[\"name/7\",[7,29.583]],[\"parent/7\",[0,2.334]],[\"name/8\",[8,27.393]],[\"parent/8\",[9,2.968]],[\"name/9\",[10,44.522]],[\"parent/9\",[9,2.968]],[\"name/10\",[11,57.515]],[\"parent/10\",[0,2.334]],[\"name/11\",[12,27.393]],[\"parent/11\",[0,2.334]],[\"name/12\",[13,36.313]],[\"parent/12\",[0,2.334]],[\"name/13\",[7,29.583]],[\"parent/13\",[0,2.334]],[\"name/14\",[10,44.522]],[\"parent/14\",[9,2.968]],[\"name/15\",[7,29.583]],[\"parent/15\",[9,2.968]],[\"name/16\",[14,44.522]],[\"parent/16\",[9,2.968]],[\"name/17\",[7,29.583]],[\"parent/17\",[9,2.968]],[\"name/18\",[15,44.522]],[\"parent/18\",[9,2.968]],[\"name/19\",[7,29.583]],[\"parent/19\",[9,2.968]],[\"name/20\",[16,46.529]],[\"parent/20\",[9,2.968]],[\"name/21\",[7,29.583]],[\"parent/21\",[9,2.968]],[\"name/22\",[17,46.529]],[\"parent/22\",[9,2.968]],[\"name/23\",[7,29.583]],[\"parent/23\",[9,2.968]],[\"name/24\",[18,46.529]],[\"parent/24\",[9,2.968]],[\"name/25\",[7,29.583]],[\"parent/25\",[9,2.968]],[\"name/26\",[19,52.407]],[\"parent/26\",[9,2.968]],[\"name/27\",[7,29.583]],[\"parent/27\",[9,2.968]],[\"name/28\",[20,52.407]],[\"parent/28\",[9,2.968]],[\"name/29\",[7,29.583]],[\"parent/29\",[9,2.968]],[\"name/30\",[21,52.407]],[\"parent/30\",[9,2.968]],[\"name/31\",[22,52.407]],[\"parent/31\",[0,2.334]],[\"name/32\",[23,57.515]],[\"parent/32\",[0,2.334]],[\"name/33\",[24,57.515]],[\"parent/33\",[0,2.334]],[\"name/34\",[25,52.407]],[\"parent/34\",[0,2.334]],[\"name/35\",[26,57.515]],[\"parent/35\",[0,2.334]],[\"name/36\",[27,57.515]],[\"parent/36\",[0,2.334]],[\"name/37\",[28,52.407]],[\"parent/37\",[0,2.334]],[\"name/38\",[29,52.407]],[\"parent/38\",[0,2.334]],[\"name/39\",[30,52.407]],[\"parent/39\",[0,2.334]],[\"name/40\",[7,29.583]],[\"parent/40\",[0,2.334]],[\"name/41\",[31,49.042]],[\"parent/41\",[0,2.334]],[\"name/42\",[7,29.583]],[\"parent/42\",[0,2.334]],[\"name/43\",[32,40.169]],[\"parent/43\",[0,2.334]],[\"name/44\",[7,29.583]],[\"parent/44\",[0,2.334]],[\"name/45\",[33,57.515]],[\"parent/45\",[0,2.334]],[\"name/46\",[34,52.407]],[\"parent/46\",[0,2.334]],[\"name/47\",[35,49.042]],[\"parent/47\",[0,2.334]],[\"name/48\",[36,57.515]],[\"parent/48\",[0,2.334]],[\"name/49\",[37,57.515]],[\"parent/49\",[0,2.334]],[\"name/50\",[38,57.515]],[\"parent/50\",[0,2.334]],[\"name/51\",[39,49.042]],[\"parent/51\",[0,2.334]],[\"name/52\",[40,57.515]],[\"parent/52\",[0,2.334]],[\"name/53\",[41,57.515]],[\"parent/53\",[0,2.334]],[\"name/54\",[42,52.407]],[\"parent/54\",[0,2.334]],[\"name/55\",[43,57.515]],[\"parent/55\",[0,2.334]],[\"name/56\",[44,57.515]],[\"parent/56\",[0,2.334]],[\"name/57\",[45,57.515]],[\"parent/57\",[]],[\"name/58\",[32,40.169]],[\"parent/58\",[]],[\"name/59\",[31,49.042]],[\"parent/59\",[32,3.741]],[\"name/60\",[30,52.407]],[\"parent/60\",[32,3.741]],[\"name/61\",[32,40.169]],[\"parent/61\",[32,3.741]],[\"name/62\",[46,52.407]],[\"parent/62\",[32,3.741]],[\"name/63\",[47,57.515]],[\"parent/63\",[32,3.741]],[\"name/64\",[13,36.313]],[\"parent/64\",[]],[\"name/65\",[17,46.529]],[\"parent/65\",[13,3.382]],[\"name/66\",[14,44.522]],[\"parent/66\",[13,3.382]],[\"name/67\",[15,44.522]],[\"parent/67\",[13,3.382]],[\"name/68\",[16,46.529]],[\"parent/68\",[13,3.382]],[\"name/69\",[18,46.529]],[\"parent/69\",[13,3.382]],[\"name/70\",[19,52.407]],[\"parent/70\",[13,3.382]],[\"name/71\",[10,44.522]],[\"parent/71\",[13,3.382]],[\"name/72\",[20,52.407]],[\"parent/72\",[13,3.382]],[\"name/73\",[48,52.407]],[\"parent/73\",[13,3.382]],[\"name/74\",[7,29.583]],[\"parent/74\",[49,5.356]],[\"name/75\",[50,57.515]],[\"parent/75\",[51,3.068]],[\"name/76\",[52,57.515]],[\"parent/76\",[51,3.068]],[\"name/77\",[53,57.515]],[\"parent/77\",[51,3.068]],[\"name/78\",[54,57.515]],[\"parent/78\",[51,3.068]],[\"name/79\",[55,57.515]],[\"parent/79\",[51,3.068]],[\"name/80\",[56,57.515]],[\"parent/80\",[51,3.068]],[\"name/81\",[57,57.515]],[\"parent/81\",[51,3.068]],[\"name/82\",[58,57.515]],[\"parent/82\",[51,3.068]],[\"name/83\",[59,57.515]],[\"parent/83\",[51,3.068]],[\"name/84\",[60,57.515]],[\"parent/84\",[51,3.068]],[\"name/85\",[61,57.515]],[\"parent/85\",[51,3.068]],[\"name/86\",[62,57.515]],[\"parent/86\",[51,3.068]],[\"name/87\",[63,57.515]],[\"parent/87\",[51,3.068]],[\"name/88\",[64,57.515]],[\"parent/88\",[51,3.068]],[\"name/89\",[65,57.515]],[\"parent/89\",[51,3.068]],[\"name/90\",[66,57.515]],[\"parent/90\",[51,3.068]],[\"name/91\",[67,57.515]],[\"parent/91\",[51,3.068]],[\"name/92\",[21,52.407]],[\"parent/92\",[13,3.382]],[\"name/93\",[68,41.421]],[\"parent/93\",[]],[\"name/94\",[28,52.407]],[\"parent/94\",[68,3.857]],[\"name/95\",[39,49.042]],[\"parent/95\",[68,3.857]],[\"name/96\",[29,52.407]],[\"parent/96\",[68,3.857]],[\"name/97\",[68,41.421]],[\"parent/97\",[68,3.857]],[\"name/98\",[1,44.522]],[\"parent/98\",[69,2.794]],[\"name/99\",[70,57.515]],[\"parent/99\",[69,2.794]],[\"name/100\",[71,57.515]],[\"parent/100\",[69,2.794]],[\"name/101\",[72,57.515]],[\"parent/101\",[69,2.794]],[\"name/102\",[73,57.515]],[\"parent/102\",[69,2.794]],[\"name/103\",[74,57.515]],[\"parent/103\",[69,2.794]],[\"name/104\",[75,57.515]],[\"parent/104\",[69,2.794]],[\"name/105\",[76,57.515]],[\"parent/105\",[69,2.794]],[\"name/106\",[77,46.529]],[\"parent/106\",[69,2.794]],[\"name/107\",[78,57.515]],[\"parent/107\",[69,2.794]],[\"name/108\",[79,57.515]],[\"parent/108\",[69,2.794]],[\"name/109\",[80,57.515]],[\"parent/109\",[69,2.794]],[\"name/110\",[81,57.515]],[\"parent/110\",[69,2.794]],[\"name/111\",[82,57.515]],[\"parent/111\",[69,2.794]],[\"name/112\",[83,57.515]],[\"parent/112\",[69,2.794]],[\"name/113\",[84,57.515]],[\"parent/113\",[69,2.794]],[\"name/114\",[85,57.515]],[\"parent/114\",[69,2.794]],[\"name/115\",[86,52.407]],[\"parent/115\",[69,2.794]],[\"name/116\",[87,57.515]],[\"parent/116\",[69,2.794]],[\"name/117\",[88,57.515]],[\"parent/117\",[69,2.794]],[\"name/118\",[89,57.515]],[\"parent/118\",[69,2.794]],[\"name/119\",[35,49.042]],[\"parent/119\",[69,2.794]],[\"name/120\",[90,52.407]],[\"parent/120\",[69,2.794]],[\"name/121\",[8,27.393]],[\"parent/121\",[]],[\"name/122\",[1,44.522]],[\"parent/122\",[8,2.551]],[\"name/123\",[91,42.852]],[\"parent/123\",[8,2.551]],[\"name/124\",[92,57.515]],[\"parent/124\",[8,2.551]],[\"name/125\",[93,57.515]],[\"parent/125\",[8,2.551]],[\"name/126\",[94,57.515]],[\"parent/126\",[8,2.551]],[\"name/127\",[95,57.515]],[\"parent/127\",[8,2.551]],[\"name/128\",[96,57.515]],[\"parent/128\",[8,2.551]],[\"name/129\",[97,57.515]],[\"parent/129\",[8,2.551]],[\"name/130\",[98,57.515]],[\"parent/130\",[8,2.551]],[\"name/131\",[99,57.515]],[\"parent/131\",[8,2.551]],[\"name/132\",[100,39.057]],[\"parent/132\",[8,2.551]],[\"name/133\",[101,57.515]],[\"parent/133\",[8,2.551]],[\"name/134\",[102,57.515]],[\"parent/134\",[8,2.551]],[\"name/135\",[103,57.515]],[\"parent/135\",[8,2.551]],[\"name/136\",[104,57.515]],[\"parent/136\",[8,2.551]],[\"name/137\",[105,57.515]],[\"parent/137\",[8,2.551]],[\"name/138\",[106,57.515]],[\"parent/138\",[8,2.551]],[\"name/139\",[107,57.515]],[\"parent/139\",[8,2.551]],[\"name/140\",[108,57.515]],[\"parent/140\",[8,2.551]],[\"name/141\",[109,52.407]],[\"parent/141\",[8,2.551]],[\"name/142\",[110,57.515]],[\"parent/142\",[8,2.551]],[\"name/143\",[111,57.515]],[\"parent/143\",[8,2.551]],[\"name/144\",[112,57.515]],[\"parent/144\",[8,2.551]],[\"name/145\",[113,57.515]],[\"parent/145\",[8,2.551]],[\"name/146\",[114,57.515]],[\"parent/146\",[8,2.551]],[\"name/147\",[115,57.515]],[\"parent/147\",[8,2.551]],[\"name/148\",[8,27.393]],[\"parent/148\",[]],[\"name/149\",[116,57.515]],[\"parent/149\",[]],[\"name/150\",[117,30.889]],[\"parent/150\",[]],[\"name/151\",[1,44.522]],[\"parent/151\",[117,2.877]],[\"name/152\",[118,57.515]],[\"parent/152\",[117,2.877]],[\"name/153\",[119,57.515]],[\"parent/153\",[117,2.877]],[\"name/154\",[120,57.515]],[\"parent/154\",[117,2.877]],[\"name/155\",[121,57.515]],[\"parent/155\",[117,2.877]],[\"name/156\",[122,57.515]],[\"parent/156\",[117,2.877]],[\"name/157\",[123,57.515]],[\"parent/157\",[117,2.877]],[\"name/158\",[124,57.515]],[\"parent/158\",[117,2.877]],[\"name/159\",[7,29.583]],[\"parent/159\",[117,2.877]],[\"name/160\",[125,57.515]],[\"parent/160\",[117,2.877]],[\"name/161\",[7,29.583]],[\"parent/161\",[117,2.877]],[\"name/162\",[39,49.042]],[\"parent/162\",[117,2.877]],[\"name/163\",[126,57.515]],[\"parent/163\",[117,2.877]],[\"name/164\",[127,57.515]],[\"parent/164\",[117,2.877]],[\"name/165\",[128,57.515]],[\"parent/165\",[117,2.877]],[\"name/166\",[129,57.515]],[\"parent/166\",[117,2.877]],[\"name/167\",[130,57.515]],[\"parent/167\",[117,2.877]],[\"name/168\",[131,57.515]],[\"parent/168\",[117,2.877]],[\"name/169\",[132,57.515]],[\"parent/169\",[117,2.877]],[\"name/170\",[109,52.407]],[\"parent/170\",[117,2.877]],[\"name/171\",[100,39.057]],[\"parent/171\",[]],[\"name/172\",[133,57.515]],[\"parent/172\",[100,3.637]],[\"name/173\",[134,57.515]],[\"parent/173\",[100,3.637]],[\"name/174\",[135,57.515]],[\"parent/174\",[100,3.637]],[\"name/175\",[136,57.515]],[\"parent/175\",[100,3.637]],[\"name/176\",[137,57.515]],[\"parent/176\",[100,3.637]],[\"name/177\",[138,57.515]],[\"parent/177\",[100,3.637]],[\"name/178\",[139,57.515]],[\"parent/178\",[100,3.637]],[\"name/179\",[48,52.407]],[\"parent/179\",[]],[\"name/180\",[46,52.407]],[\"parent/180\",[]],[\"name/181\",[140,42.852]],[\"parent/181\",[]],[\"name/182\",[141,57.515]],[\"parent/182\",[]],[\"name/183\",[68,41.421]],[\"parent/183\",[]],[\"name/184\",[12,27.393]],[\"parent/184\",[]],[\"name/185\",[1,44.522]],[\"parent/185\",[12,2.551]],[\"name/186\",[142,57.515]],[\"parent/186\",[12,2.551]],[\"name/187\",[143,57.515]],[\"parent/187\",[12,2.551]],[\"name/188\",[144,57.515]],[\"parent/188\",[12,2.551]],[\"name/189\",[145,57.515]],[\"parent/189\",[12,2.551]],[\"name/190\",[146,57.515]],[\"parent/190\",[12,2.551]],[\"name/191\",[147,57.515]],[\"parent/191\",[12,2.551]],[\"name/192\",[148,57.515]],[\"parent/192\",[12,2.551]],[\"name/193\",[149,52.407]],[\"parent/193\",[12,2.551]],[\"name/194\",[150,57.515]],[\"parent/194\",[12,2.551]],[\"name/195\",[7,29.583]],[\"parent/195\",[12,2.551]],[\"name/196\",[2,49.042]],[\"parent/196\",[151,3.243]],[\"name/197\",[152,57.515]],[\"parent/197\",[12,2.551]],[\"name/198\",[153,57.515]],[\"parent/198\",[12,2.551]],[\"name/199\",[154,57.515]],[\"parent/199\",[12,2.551]],[\"name/200\",[7,29.583]],[\"parent/200\",[12,2.551]],[\"name/201\",[155,49.042]],[\"parent/201\",[151,3.243]],[\"name/202\",[156,46.529]],[\"parent/202\",[151,3.243]],[\"name/203\",[157,57.515]],[\"parent/203\",[151,3.243]],[\"name/204\",[158,57.515]],[\"parent/204\",[151,3.243]],[\"name/205\",[159,57.515]],[\"parent/205\",[12,2.551]],[\"name/206\",[7,29.583]],[\"parent/206\",[12,2.551]],[\"name/207\",[155,49.042]],[\"parent/207\",[151,3.243]],[\"name/208\",[156,46.529]],[\"parent/208\",[151,3.243]],[\"name/209\",[2,49.042]],[\"parent/209\",[151,3.243]],[\"name/210\",[160,57.515]],[\"parent/210\",[151,3.243]],[\"name/211\",[161,57.515]],[\"parent/211\",[12,2.551]],[\"name/212\",[7,29.583]],[\"parent/212\",[12,2.551]],[\"name/213\",[155,49.042]],[\"parent/213\",[151,3.243]],[\"name/214\",[156,46.529]],[\"parent/214\",[151,3.243]],[\"name/215\",[162,57.515]],[\"parent/215\",[151,3.243]],[\"name/216\",[163,57.515]],[\"parent/216\",[12,2.551]],[\"name/217\",[7,29.583]],[\"parent/217\",[12,2.551]],[\"name/218\",[164,57.515]],[\"parent/218\",[151,3.243]],[\"name/219\",[165,57.515]],[\"parent/219\",[151,3.243]],[\"name/220\",[166,57.515]],[\"parent/220\",[12,2.551]],[\"name/221\",[10,44.522]],[\"parent/221\",[12,2.551]],[\"name/222\",[34,52.407]],[\"parent/222\",[12,2.551]],[\"name/223\",[167,57.515]],[\"parent/223\",[12,2.551]],[\"name/224\",[168,57.515]],[\"parent/224\",[12,2.551]],[\"name/225\",[169,57.515]],[\"parent/225\",[12,2.551]],[\"name/226\",[170,57.515]],[\"parent/226\",[]],[\"name/227\",[171,57.515]],[\"parent/227\",[]],[\"name/228\",[172,57.515]],[\"parent/228\",[]],[\"name/229\",[173,57.515]],[\"parent/229\",[]],[\"name/230\",[77,46.529]],[\"parent/230\",[]],[\"name/231\",[174,57.515]],[\"parent/231\",[]],[\"name/232\",[175,57.515]],[\"parent/232\",[]],[\"name/233\",[176,57.515]],[\"parent/233\",[]],[\"name/234\",[177,57.515]],[\"parent/234\",[]],[\"name/235\",[178,52.407]],[\"parent/235\",[]],[\"name/236\",[179,52.407]],[\"parent/236\",[]],[\"name/237\",[180,57.515]],[\"parent/237\",[]],[\"name/238\",[181,57.515]],[\"parent/238\",[]],[\"name/239\",[182,57.515]],[\"parent/239\",[]],[\"name/240\",[183,57.515]],[\"parent/240\",[]],[\"name/241\",[12,27.393]],[\"parent/241\",[]],[\"name/242\",[22,52.407]],[\"parent/242\",[]],[\"name/243\",[184,57.515]],[\"parent/243\",[]],[\"name/244\",[185,57.515]],[\"parent/244\",[]],[\"name/245\",[186,57.515]],[\"parent/245\",[]],[\"name/246\",[187,57.515]],[\"parent/246\",[]],[\"name/247\",[188,57.515]],[\"parent/247\",[]],[\"name/248\",[189,57.515]],[\"parent/248\",[]],[\"name/249\",[190,44.522]],[\"parent/249\",[]],[\"name/250\",[191,34.161]],[\"parent/250\",[190,4.146]],[\"name/251\",[192,34.161]],[\"parent/251\",[190,4.146]],[\"name/252\",[193,35.543]],[\"parent/252\",[190,4.146]],[\"name/253\",[194,35.543]],[\"parent/253\",[190,4.146]],[\"name/254\",[195,37.146]],[\"parent/254\",[]],[\"name/255\",[196,49.042]],[\"parent/255\",[195,3.459]],[\"name/256\",[197,46.529]],[\"parent/256\",[195,3.459]],[\"name/257\",[198,42.852]],[\"parent/257\",[195,3.459]],[\"name/258\",[199,49.042]],[\"parent/258\",[195,3.459]],[\"name/259\",[200,57.515]],[\"parent/259\",[195,3.459]],[\"name/260\",[201,52.407]],[\"parent/260\",[195,3.459]],[\"name/261\",[191,34.161]],[\"parent/261\",[195,3.459]],[\"name/262\",[192,34.161]],[\"parent/262\",[195,3.459]],[\"name/263\",[193,35.543]],[\"parent/263\",[195,3.459]],[\"name/264\",[194,35.543]],[\"parent/264\",[195,3.459]],[\"name/265\",[202,44.522]],[\"parent/265\",[]],[\"name/266\",[191,34.161]],[\"parent/266\",[202,4.146]],[\"name/267\",[192,34.161]],[\"parent/267\",[202,4.146]],[\"name/268\",[193,35.543]],[\"parent/268\",[202,4.146]],[\"name/269\",[194,35.543]],[\"parent/269\",[202,4.146]],[\"name/270\",[203,44.522]],[\"parent/270\",[]],[\"name/271\",[191,34.161]],[\"parent/271\",[203,4.146]],[\"name/272\",[192,34.161]],[\"parent/272\",[203,4.146]],[\"name/273\",[193,35.543]],[\"parent/273\",[203,4.146]],[\"name/274\",[194,35.543]],[\"parent/274\",[203,4.146]],[\"name/275\",[204,42.852]],[\"parent/275\",[]],[\"name/276\",[198,42.852]],[\"parent/276\",[204,3.991]],[\"name/277\",[191,34.161]],[\"parent/277\",[204,3.991]],[\"name/278\",[192,34.161]],[\"parent/278\",[204,3.991]],[\"name/279\",[193,35.543]],[\"parent/279\",[204,3.991]],[\"name/280\",[194,35.543]],[\"parent/280\",[204,3.991]],[\"name/281\",[205,42.852]],[\"parent/281\",[]],[\"name/282\",[198,42.852]],[\"parent/282\",[205,3.991]],[\"name/283\",[191,34.161]],[\"parent/283\",[205,3.991]],[\"name/284\",[192,34.161]],[\"parent/284\",[205,3.991]],[\"name/285\",[193,35.543]],[\"parent/285\",[205,3.991]],[\"name/286\",[194,35.543]],[\"parent/286\",[205,3.991]],[\"name/287\",[206,44.522]],[\"parent/287\",[]],[\"name/288\",[191,34.161]],[\"parent/288\",[206,4.146]],[\"name/289\",[192,34.161]],[\"parent/289\",[206,4.146]],[\"name/290\",[193,35.543]],[\"parent/290\",[206,4.146]],[\"name/291\",[194,35.543]],[\"parent/291\",[206,4.146]],[\"name/292\",[207,44.522]],[\"parent/292\",[]],[\"name/293\",[191,34.161]],[\"parent/293\",[207,4.146]],[\"name/294\",[192,34.161]],[\"parent/294\",[207,4.146]],[\"name/295\",[193,35.543]],[\"parent/295\",[207,4.146]],[\"name/296\",[194,35.543]],[\"parent/296\",[207,4.146]],[\"name/297\",[208,36.313]],[\"parent/297\",[]],[\"name/298\",[209,52.407]],[\"parent/298\",[208,3.382]],[\"name/299\",[210,52.407]],[\"parent/299\",[208,3.382]],[\"name/300\",[211,52.407]],[\"parent/300\",[208,3.382]],[\"name/301\",[212,57.515]],[\"parent/301\",[208,3.382]],[\"name/302\",[77,46.529]],[\"parent/302\",[208,3.382]],[\"name/303\",[90,52.407]],[\"parent/303\",[208,3.382]],[\"name/304\",[86,52.407]],[\"parent/304\",[208,3.382]],[\"name/305\",[191,34.161]],[\"parent/305\",[208,3.382]],[\"name/306\",[192,34.161]],[\"parent/306\",[208,3.382]],[\"name/307\",[193,35.543]],[\"parent/307\",[208,3.382]],[\"name/308\",[194,35.543]],[\"parent/308\",[208,3.382]],[\"name/309\",[213,41.421]],[\"parent/309\",[]],[\"name/310\",[197,46.529]],[\"parent/310\",[213,3.857]],[\"name/311\",[198,42.852]],[\"parent/311\",[213,3.857]],[\"name/312\",[191,34.161]],[\"parent/312\",[213,3.857]],[\"name/313\",[192,34.161]],[\"parent/313\",[213,3.857]],[\"name/314\",[193,35.543]],[\"parent/314\",[213,3.857]],[\"name/315\",[194,35.543]],[\"parent/315\",[213,3.857]],[\"name/316\",[214,34.828]],[\"parent/316\",[]],[\"name/317\",[196,49.042]],[\"parent/317\",[214,3.243]],[\"name/318\",[198,42.852]],[\"parent/318\",[214,3.243]],[\"name/319\",[199,49.042]],[\"parent/319\",[214,3.243]],[\"name/320\",[197,46.529]],[\"parent/320\",[214,3.243]],[\"name/321\",[215,52.407]],[\"parent/321\",[214,3.243]],[\"name/322\",[209,52.407]],[\"parent/322\",[214,3.243]],[\"name/323\",[7,29.583]],[\"parent/323\",[214,3.243]],[\"name/324\",[192,34.161]],[\"parent/324\",[216,4.88]],[\"name/325\",[217,57.515]],[\"parent/325\",[214,3.243]],[\"name/326\",[7,29.583]],[\"parent/326\",[214,3.243]],[\"name/327\",[192,34.161]],[\"parent/327\",[216,4.88]],[\"name/328\",[191,34.161]],[\"parent/328\",[214,3.243]],[\"name/329\",[192,34.161]],[\"parent/329\",[214,3.243]],[\"name/330\",[193,35.543]],[\"parent/330\",[214,3.243]],[\"name/331\",[194,35.543]],[\"parent/331\",[214,3.243]],[\"name/332\",[218,40.169]],[\"parent/332\",[]],[\"name/333\",[198,42.852]],[\"parent/333\",[218,3.741]],[\"name/334\",[199,49.042]],[\"parent/334\",[218,3.741]],[\"name/335\",[197,46.529]],[\"parent/335\",[218,3.741]],[\"name/336\",[191,34.161]],[\"parent/336\",[218,3.741]],[\"name/337\",[192,34.161]],[\"parent/337\",[218,3.741]],[\"name/338\",[193,35.543]],[\"parent/338\",[218,3.741]],[\"name/339\",[194,35.543]],[\"parent/339\",[218,3.741]],[\"name/340\",[219,42.852]],[\"parent/340\",[]],[\"name/341\",[220,52.407]],[\"parent/341\",[219,3.991]],[\"name/342\",[191,34.161]],[\"parent/342\",[219,3.991]],[\"name/343\",[192,34.161]],[\"parent/343\",[219,3.991]],[\"name/344\",[193,35.543]],[\"parent/344\",[219,3.991]],[\"name/345\",[194,35.543]],[\"parent/345\",[219,3.991]],[\"name/346\",[221,31.366]],[\"parent/346\",[]],[\"name/347\",[191,34.161]],[\"parent/347\",[221,2.921]],[\"name/348\",[222,57.515]],[\"parent/348\",[221,2.921]],[\"name/349\",[223,57.515]],[\"parent/349\",[221,2.921]],[\"name/350\",[224,57.515]],[\"parent/350\",[221,2.921]],[\"name/351\",[201,52.407]],[\"parent/351\",[221,2.921]],[\"name/352\",[225,57.515]],[\"parent/352\",[221,2.921]],[\"name/353\",[226,57.515]],[\"parent/353\",[221,2.921]],[\"name/354\",[227,57.515]],[\"parent/354\",[221,2.921]],[\"name/355\",[228,57.515]],[\"parent/355\",[221,2.921]],[\"name/356\",[220,52.407]],[\"parent/356\",[221,2.921]],[\"name/357\",[229,57.515]],[\"parent/357\",[221,2.921]],[\"name/358\",[230,57.515]],[\"parent/358\",[221,2.921]],[\"name/359\",[231,57.515]],[\"parent/359\",[221,2.921]],[\"name/360\",[232,57.515]],[\"parent/360\",[221,2.921]],[\"name/361\",[233,57.515]],[\"parent/361\",[221,2.921]],[\"name/362\",[234,57.515]],[\"parent/362\",[221,2.921]],[\"name/363\",[235,57.515]],[\"parent/363\",[221,2.921]],[\"name/364\",[236,57.515]],[\"parent/364\",[221,2.921]],[\"name/365\",[237,57.515]],[\"parent/365\",[221,2.921]],[\"name/366\",[238,52.407]],[\"parent/366\",[]],[\"name/367\",[191,34.161]],[\"parent/367\",[238,4.88]],[\"name/368\",[239,57.515]],[\"parent/368\",[]],[\"name/369\",[240,57.515]],[\"parent/369\",[]],[\"name/370\",[3,31.366]],[\"parent/370\",[]],[\"name/371\",[156,46.529]],[\"parent/371\",[3,2.921]],[\"name/372\",[241,57.515]],[\"parent/372\",[3,2.921]],[\"name/373\",[242,57.515]],[\"parent/373\",[3,2.921]],[\"name/374\",[243,57.515]],[\"parent/374\",[3,2.921]],[\"name/375\",[244,57.515]],[\"parent/375\",[3,2.921]],[\"name/376\",[42,52.407]],[\"parent/376\",[3,2.921]],[\"name/377\",[245,57.515]],[\"parent/377\",[3,2.921]],[\"name/378\",[246,57.515]],[\"parent/378\",[3,2.921]],[\"name/379\",[247,57.515]],[\"parent/379\",[3,2.921]],[\"name/380\",[248,57.515]],[\"parent/380\",[3,2.921]],[\"name/381\",[249,57.515]],[\"parent/381\",[3,2.921]],[\"name/382\",[149,52.407]],[\"parent/382\",[3,2.921]],[\"name/383\",[17,46.529]],[\"parent/383\",[3,2.921]],[\"name/384\",[14,44.522]],[\"parent/384\",[3,2.921]],[\"name/385\",[15,44.522]],[\"parent/385\",[3,2.921]],[\"name/386\",[16,46.529]],[\"parent/386\",[3,2.921]],[\"name/387\",[18,46.529]],[\"parent/387\",[3,2.921]],[\"name/388\",[35,49.042]],[\"parent/388\",[3,2.921]],[\"name/389\",[250,57.515]],[\"parent/389\",[]],[\"name/390\",[251,30.889]],[\"parent/390\",[]],[\"name/391\",[91,42.852]],[\"parent/391\",[251,2.877]],[\"name/392\",[252,44.522]],[\"parent/392\",[251,2.877]],[\"name/393\",[253,52.407]],[\"parent/393\",[251,2.877]],[\"name/394\",[254,57.515]],[\"parent/394\",[251,2.877]],[\"name/395\",[140,42.852]],[\"parent/395\",[251,2.877]],[\"name/396\",[255,44.522]],[\"parent/396\",[251,2.877]],[\"name/397\",[210,52.407]],[\"parent/397\",[251,2.877]],[\"name/398\",[256,57.515]],[\"parent/398\",[251,2.877]],[\"name/399\",[257,49.042]],[\"parent/399\",[251,2.877]],[\"name/400\",[258,57.515]],[\"parent/400\",[251,2.877]],[\"name/401\",[178,52.407]],[\"parent/401\",[251,2.877]],[\"name/402\",[259,57.515]],[\"parent/402\",[251,2.877]],[\"name/403\",[77,46.529]],[\"parent/403\",[251,2.877]],[\"name/404\",[179,52.407]],[\"parent/404\",[251,2.877]],[\"name/405\",[260,57.515]],[\"parent/405\",[251,2.877]],[\"name/406\",[211,52.407]],[\"parent/406\",[251,2.877]],[\"name/407\",[261,57.515]],[\"parent/407\",[251,2.877]],[\"name/408\",[262,57.515]],[\"parent/408\",[251,2.877]],[\"name/409\",[196,49.042]],[\"parent/409\",[251,2.877]],[\"name/410\",[8,27.393]],[\"parent/410\",[251,2.877]],[\"name/411\",[263,57.515]],[\"parent/411\",[]],[\"name/412\",[264,57.515]],[\"parent/412\",[]],[\"name/413\",[265,57.515]],[\"parent/413\",[]],[\"name/414\",[266,57.515]],[\"parent/414\",[]],[\"name/415\",[267,57.515]],[\"parent/415\",[]],[\"name/416\",[268,57.515]],[\"parent/416\",[]],[\"name/417\",[269,42.852]],[\"parent/417\",[]],[\"name/418\",[270,57.515]],[\"parent/418\",[269,3.991]],[\"name/419\",[271,57.515]],[\"parent/419\",[269,3.991]],[\"name/420\",[272,57.515]],[\"parent/420\",[269,3.991]],[\"name/421\",[31,49.042]],[\"parent/421\",[269,3.991]],[\"name/422\",[252,44.522]],[\"parent/422\",[269,3.991]],[\"name/423\",[273,41.421]],[\"parent/423\",[]],[\"name/424\",[91,42.852]],[\"parent/424\",[273,3.857]],[\"name/425\",[252,44.522]],[\"parent/425\",[273,3.857]],[\"name/426\",[140,42.852]],[\"parent/426\",[273,3.857]],[\"name/427\",[255,44.522]],[\"parent/427\",[273,3.857]],[\"name/428\",[274,52.407]],[\"parent/428\",[273,3.857]],[\"name/429\",[257,49.042]],[\"parent/429\",[273,3.857]],[\"name/430\",[275,37.146]],[\"parent/430\",[]],[\"name/431\",[91,42.852]],[\"parent/431\",[275,3.459]],[\"name/432\",[252,44.522]],[\"parent/432\",[275,3.459]],[\"name/433\",[253,52.407]],[\"parent/433\",[275,3.459]],[\"name/434\",[276,57.515]],[\"parent/434\",[275,3.459]],[\"name/435\",[140,42.852]],[\"parent/435\",[275,3.459]],[\"name/436\",[255,44.522]],[\"parent/436\",[275,3.459]],[\"name/437\",[274,52.407]],[\"parent/437\",[275,3.459]],[\"name/438\",[277,52.407]],[\"parent/438\",[275,3.459]],[\"name/439\",[257,49.042]],[\"parent/439\",[275,3.459]],[\"name/440\",[215,52.407]],[\"parent/440\",[275,3.459]],[\"name/441\",[278,41.421]],[\"parent/441\",[]],[\"name/442\",[91,42.852]],[\"parent/442\",[278,3.857]],[\"name/443\",[252,44.522]],[\"parent/443\",[278,3.857]],[\"name/444\",[279,57.515]],[\"parent/444\",[278,3.857]],[\"name/445\",[277,52.407]],[\"parent/445\",[278,3.857]],[\"name/446\",[140,42.852]],[\"parent/446\",[278,3.857]],[\"name/447\",[255,44.522]],[\"parent/447\",[278,3.857]],[\"name/448\",[280,57.515]],[\"parent/448\",[]],[\"name/449\",[281,39.057]],[\"parent/449\",[]],[\"name/450\",[91,42.852]],[\"parent/450\",[281,3.637]],[\"name/451\",[14,44.522]],[\"parent/451\",[281,3.637]],[\"name/452\",[15,44.522]],[\"parent/452\",[281,3.637]],[\"name/453\",[282,57.515]],[\"parent/453\",[281,3.637]],[\"name/454\",[7,29.583]],[\"parent/454\",[281,3.637]],[\"name/455\",[283,57.515]],[\"parent/455\",[284,4.88]],[\"name/456\",[285,57.515]],[\"parent/456\",[284,4.88]],[\"name/457\",[286,57.515]],[\"parent/457\",[281,3.637]],[\"name/458\",[140,42.852]],[\"parent/458\",[281,3.637]],[\"name/459\",[255,44.522]],[\"parent/459\",[281,3.637]],[\"name/460\",[4,36.313]],[\"parent/460\",[]],[\"name/461\",[14,44.522]],[\"parent/461\",[4,3.382]],[\"name/462\",[15,44.522]],[\"parent/462\",[4,3.382]],[\"name/463\",[16,46.529]],[\"parent/463\",[4,3.382]],[\"name/464\",[17,46.529]],[\"parent/464\",[4,3.382]],[\"name/465\",[18,46.529]],[\"parent/465\",[4,3.382]],[\"name/466\",[25,52.407]],[\"parent/466\",[4,3.382]],[\"name/467\",[10,44.522]],[\"parent/467\",[4,3.382]],[\"name/468\",[287,57.515]],[\"parent/468\",[4,3.382]],[\"name/469\",[288,57.515]],[\"parent/469\",[4,3.382]],[\"name/470\",[289,57.515]],[\"parent/470\",[4,3.382]]],\"invertedIndex\":[[\"__type\",{\"_index\":7,\"name\":{\"7\":{},\"13\":{},\"15\":{},\"17\":{},\"19\":{},\"21\":{},\"23\":{},\"25\":{},\"27\":{},\"29\":{},\"40\":{},\"42\":{},\"44\":{},\"74\":{},\"159\":{},\"161\":{},\"195\":{},\"200\":{},\"206\":{},\"212\":{},\"217\":{},\"323\":{},\"326\":{},\"454\":{}},\"parent\":{}}],[\"adapter\",{\"_index\":162,\"name\":{\"215\":{}},\"parent\":{}}],[\"age\",{\"_index\":258,\"name\":{\"400\":{}},\"parent\":{}}],[\"agent\",{\"_index\":146,\"name\":{\"190\":{}},\"parent\":{}}],[\"all\",{\"_index\":20,\"name\":{\"28\":{},\"72\":{}},\"parent\":{}}],[\"analyze\",{\"_index\":27,\"name\":{\"36\":{}},\"parent\":{}}],[\"annotations\",{\"_index\":257,\"name\":{\"399\":{},\"429\":{},\"439\":{}},\"parent\":{}}],[\"antispoof\",{\"_index\":90,\"name\":{\"120\":{},\"303\":{}},\"parent\":{}}],[\"anycanvas\",{\"_index\":184,\"name\":{\"243\":{}},\"parent\":{}}],[\"anyimage\",{\"_index\":185,\"name\":{\"244\":{}},\"parent\":{}}],[\"anyvideo\",{\"_index\":186,\"name\":{\"245\":{}},\"parent\":{}}],[\"array\",{\"_index\":103,\"name\":{\"135\":{}},\"parent\":{}}],[\"arraysync\",{\"_index\":104,\"name\":{\"136\":{}},\"parent\":{}}],[\"async\",{\"_index\":244,\"name\":{\"375\":{}},\"parent\":{}}],[\"backend\",{\"_index\":156,\"name\":{\"202\":{},\"208\":{},\"214\":{},\"371\":{}},\"parent\":{}}],[\"backends\",{\"_index\":147,\"name\":{\"191\":{}},\"parent\":{}}],[\"backendtype\",{\"_index\":239,\"name\":{\"368\":{}},\"parent\":{}}],[\"blazepose\",{\"_index\":73,\"name\":{\"102\":{}},\"parent\":{}}],[\"blazeposedetect\",{\"_index\":72,\"name\":{\"101\":{}},\"parent\":{}}],[\"blur\",{\"_index\":220,\"name\":{\"341\":{},\"356\":{}},\"parent\":{}}],[\"body\",{\"_index\":15,\"name\":{\"18\":{},\"67\":{},\"385\":{},\"452\":{},\"462\":{}},\"parent\":{}}],[\"bodyannotation\",{\"_index\":182,\"name\":{\"239\":{}},\"parent\":{}}],[\"bodyannotationblazepose\",{\"_index\":267,\"name\":{\"415\":{}},\"parent\":{}}],[\"bodyannotationefficientpose\",{\"_index\":268,\"name\":{\"416\":{}},\"parent\":{}}],[\"bodyconfig\",{\"_index\":213,\"name\":{\"309\":{}},\"parent\":{\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{}}}],[\"bodygesture\",{\"_index\":171,\"name\":{\"227\":{}},\"parent\":{}}],[\"bodykeypoint\",{\"_index\":269,\"name\":{\"417\":{}},\"parent\":{\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"422\":{}}}],[\"bodylandmark\",{\"_index\":181,\"name\":{\"238\":{}},\"parent\":{}}],[\"bodylandmarkblazepose\",{\"_index\":266,\"name\":{\"414\":{}},\"parent\":{}}],[\"bodylandmarkefficientnet\",{\"_index\":265,\"name\":{\"413\":{}},\"parent\":{}}],[\"bodylandmarkmovenet\",{\"_index\":264,\"name\":{\"412\":{}},\"parent\":{}}],[\"bodylandmarkposenet\",{\"_index\":263,\"name\":{\"411\":{}},\"parent\":{}}],[\"bodyresult\",{\"_index\":273,\"name\":{\"423\":{}},\"parent\":{\"424\":{},\"425\":{},\"426\":{},\"427\":{},\"428\":{},\"429\":{}}}],[\"box\",{\"_index\":140,\"name\":{\"181\":{},\"395\":{},\"426\":{},\"435\":{},\"446\":{},\"458\":{}},\"parent\":{}}],[\"boxraw\",{\"_index\":255,\"name\":{\"396\":{},\"427\":{},\"436\":{},\"447\":{},\"459\":{}},\"parent\":{}}],[\"boxscore\",{\"_index\":253,\"name\":{\"393\":{},\"433\":{}},\"parent\":{}}],[\"brightness\",{\"_index\":226,\"name\":{\"353\":{}},\"parent\":{}}],[\"browser\",{\"_index\":142,\"name\":{\"186\":{}},\"parent\":{}}],[\"buffer\",{\"_index\":101,\"name\":{\"133\":{}},\"parent\":{}}],[\"buffersync\",{\"_index\":102,\"name\":{\"134\":{}},\"parent\":{}}],[\"bytes\",{\"_index\":108,\"name\":{\"140\":{}},\"parent\":{}}],[\"cachemodels\",{\"_index\":246,\"name\":{\"378\":{}},\"parent\":{}}],[\"cachesensitivity\",{\"_index\":247,\"name\":{\"379\":{}},\"parent\":{}}],[\"canvas\",{\"_index\":10,\"name\":{\"9\":{},\"14\":{},\"71\":{},\"221\":{},\"467\":{}},\"parent\":{}}],[\"centernet\",{\"_index\":74,\"name\":{\"103\":{}},\"parent\":{}}],[\"class\",{\"_index\":279,\"name\":{\"444\":{}},\"parent\":{}}],[\"clone\",{\"_index\":113,\"name\":{\"145\":{}},\"parent\":{}}],[\"color\",{\"_index\":50,\"name\":{\"75\":{}},\"parent\":{}}],[\"compare\",{\"_index\":37,\"name\":{\"49\":{}},\"parent\":{}}],[\"config\",{\"_index\":3,\"name\":{\"3\":{},\"370\":{}},\"parent\":{\"371\":{},\"372\":{},\"373\":{},\"374\":{},\"375\":{},\"376\":{},\"377\":{},\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{},\"385\":{},\"386\":{},\"387\":{},\"388\":{}}}],[\"constructor\",{\"_index\":1,\"name\":{\"1\":{},\"98\":{},\"122\":{},\"151\":{},\"185\":{}},\"parent\":{}}],[\"contrast\",{\"_index\":227,\"name\":{\"354\":{}},\"parent\":{}}],[\"cpu\",{\"_index\":163,\"name\":{\"216\":{}},\"parent\":{}}],[\"data\",{\"_index\":105,\"name\":{\"137\":{}},\"parent\":{}}],[\"dataid\",{\"_index\":92,\"name\":{\"124\":{}},\"parent\":{}}],[\"datasync\",{\"_index\":107,\"name\":{\"139\":{}},\"parent\":{}}],[\"datatogpu\",{\"_index\":106,\"name\":{\"138\":{}},\"parent\":{}}],[\"deallocate\",{\"_index\":248,\"name\":{\"380\":{}},\"parent\":{}}],[\"debug\",{\"_index\":243,\"name\":{\"374\":{}},\"parent\":{}}],[\"default\",{\"_index\":45,\"name\":{\"57\":{}},\"parent\":{}}],[\"defaults\",{\"_index\":250,\"name\":{\"389\":{}},\"parent\":{}}],[\"description\",{\"_index\":212,\"name\":{\"301\":{}},\"parent\":{}}],[\"descriptor\",{\"_index\":46,\"name\":{\"62\":{},\"180\":{}},\"parent\":{}}],[\"detect\",{\"_index\":44,\"name\":{\"56\":{}},\"parent\":{}}],[\"detector\",{\"_index\":209,\"name\":{\"298\":{},\"322\":{}},\"parent\":{}}],[\"dispose\",{\"_index\":109,\"name\":{\"141\":{},\"170\":{}},\"parent\":{}}],[\"disposeintermediatetensors\",{\"_index\":132,\"name\":{\"169\":{}},\"parent\":{}}],[\"distance\",{\"_index\":31,\"name\":{\"41\":{},\"59\":{},\"421\":{}},\"parent\":{}}],[\"draw\",{\"_index\":13,\"name\":{\"12\":{},\"64\":{}},\"parent\":{\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"92\":{}}}],[\"draw.drawoptions\",{\"_index\":49,\"name\":{},\"parent\":{\"74\":{}}}],[\"draw.drawoptions.__type\",{\"_index\":51,\"name\":{},\"parent\":{\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{}}}],[\"drawboxes\",{\"_index\":62,\"name\":{\"86\":{}},\"parent\":{}}],[\"drawgaze\",{\"_index\":64,\"name\":{\"88\":{}},\"parent\":{}}],[\"drawgestures\",{\"_index\":61,\"name\":{\"85\":{}},\"parent\":{}}],[\"drawlabels\",{\"_index\":60,\"name\":{\"84\":{}},\"parent\":{}}],[\"drawoptions\",{\"_index\":48,\"name\":{\"73\":{},\"179\":{}},\"parent\":{}}],[\"drawpoints\",{\"_index\":59,\"name\":{\"83\":{}},\"parent\":{}}],[\"drawpolygons\",{\"_index\":63,\"name\":{\"87\":{}},\"parent\":{}}],[\"dtype\",{\"_index\":95,\"name\":{\"127\":{}},\"parent\":{}}],[\"efficientpose\",{\"_index\":75,\"name\":{\"104\":{}},\"parent\":{}}],[\"embedding\",{\"_index\":260,\"name\":{\"405\":{}},\"parent\":{}}],[\"emit\",{\"_index\":40,\"name\":{\"52\":{}},\"parent\":{}}],[\"emotion\",{\"_index\":77,\"name\":{\"106\":{},\"230\":{},\"302\":{},\"403\":{}},\"parent\":{}}],[\"enabled\",{\"_index\":191,\"name\":{\"250\":{},\"261\":{},\"266\":{},\"271\":{},\"277\":{},\"283\":{},\"288\":{},\"293\":{},\"305\":{},\"312\":{},\"328\":{},\"336\":{},\"342\":{},\"347\":{},\"367\":{}},\"parent\":{}}],[\"enhance\",{\"_index\":36,\"name\":{\"48\":{}},\"parent\":{}}],[\"env\",{\"_index\":12,\"name\":{\"11\":{},\"184\":{},\"241\":{}},\"parent\":{\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"205\":{},\"206\":{},\"211\":{},\"212\":{},\"216\":{},\"217\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{}}}],[\"env.__type\",{\"_index\":151,\"name\":{},\"parent\":{\"196\":{},\"201\":{},\"202\":{},\"203\":{},\"204\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"213\":{},\"214\":{},\"215\":{},\"218\":{},\"219\":{}}}],[\"equalization\",{\"_index\":222,\"name\":{\"348\":{}},\"parent\":{}}],[\"error\",{\"_index\":289,\"name\":{\"470\":{}},\"parent\":{}}],[\"events\",{\"_index\":22,\"name\":{\"31\":{},\"242\":{}},\"parent\":{}}],[\"execute\",{\"_index\":129,\"name\":{\"166\":{}},\"parent\":{}}],[\"executeasync\",{\"_index\":130,\"name\":{\"167\":{}},\"parent\":{}}],[\"externalcanvas\",{\"_index\":188,\"name\":{\"247\":{}},\"parent\":{}}],[\"face\",{\"_index\":14,\"name\":{\"16\":{},\"66\":{},\"384\":{},\"451\":{},\"461\":{}},\"parent\":{}}],[\"faceantispoofconfig\",{\"_index\":206,\"name\":{\"287\":{}},\"parent\":{\"288\":{},\"289\":{},\"290\":{},\"291\":{}}}],[\"faceconfig\",{\"_index\":208,\"name\":{\"297\":{}},\"parent\":{\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{}}}],[\"facedescriptionconfig\",{\"_index\":204,\"name\":{\"275\":{}},\"parent\":{\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{}}}],[\"facedetect\",{\"_index\":78,\"name\":{\"107\":{}},\"parent\":{}}],[\"facedetectorconfig\",{\"_index\":195,\"name\":{\"254\":{}},\"parent\":{\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{}}}],[\"faceemotionconfig\",{\"_index\":205,\"name\":{\"281\":{}},\"parent\":{\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{}}}],[\"facegesture\",{\"_index\":170,\"name\":{\"226\":{}},\"parent\":{}}],[\"faceiris\",{\"_index\":79,\"name\":{\"108\":{}},\"parent\":{}}],[\"faceirisconfig\",{\"_index\":203,\"name\":{\"270\":{}},\"parent\":{\"271\":{},\"272\":{},\"273\":{},\"274\":{}}}],[\"facelandmark\",{\"_index\":180,\"name\":{\"237\":{}},\"parent\":{}}],[\"facelivenessconfig\",{\"_index\":207,\"name\":{\"292\":{}},\"parent\":{\"293\":{},\"294\":{},\"295\":{},\"296\":{}}}],[\"facemesh\",{\"_index\":80,\"name\":{\"109\":{}},\"parent\":{}}],[\"facemeshconfig\",{\"_index\":202,\"name\":{\"265\":{}},\"parent\":{\"266\":{},\"267\":{},\"268\":{},\"269\":{}}}],[\"faceres\",{\"_index\":81,\"name\":{\"110\":{}},\"parent\":{}}],[\"faceresult\",{\"_index\":251,\"name\":{\"390\":{}},\"parent\":{\"391\":{},\"392\":{},\"393\":{},\"394\":{},\"395\":{},\"396\":{},\"397\":{},\"398\":{},\"399\":{},\"400\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{},\"405\":{},\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{}}}],[\"facescore\",{\"_index\":254,\"name\":{\"394\":{}},\"parent\":{}}],[\"facetriangulation\",{\"_index\":23,\"name\":{\"32\":{}},\"parent\":{}}],[\"faceuvmap\",{\"_index\":24,\"name\":{\"33\":{}},\"parent\":{}}],[\"fillpolygons\",{\"_index\":65,\"name\":{\"89\":{}},\"parent\":{}}],[\"filter\",{\"_index\":149,\"name\":{\"193\":{},\"382\":{}},\"parent\":{}}],[\"filterconfig\",{\"_index\":221,\"name\":{\"346\":{}},\"parent\":{\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{},\"363\":{},\"364\":{},\"365\":{}}}],[\"finger\",{\"_index\":174,\"name\":{\"231\":{}},\"parent\":{}}],[\"fingercurl\",{\"_index\":175,\"name\":{\"232\":{}},\"parent\":{}}],[\"fingerdirection\",{\"_index\":176,\"name\":{\"233\":{}},\"parent\":{}}],[\"fingerscore\",{\"_index\":276,\"name\":{\"434\":{}},\"parent\":{}}],[\"flags\",{\"_index\":165,\"name\":{\"219\":{}},\"parent\":{}}],[\"flip\",{\"_index\":225,\"name\":{\"352\":{}},\"parent\":{}}],[\"font\",{\"_index\":54,\"name\":{\"78\":{}},\"parent\":{}}],[\"gear\",{\"_index\":71,\"name\":{\"100\":{}},\"parent\":{}}],[\"gender\",{\"_index\":178,\"name\":{\"235\":{},\"401\":{}},\"parent\":{}}],[\"genderscore\",{\"_index\":259,\"name\":{\"402\":{}},\"parent\":{}}],[\"genericconfig\",{\"_index\":190,\"name\":{\"249\":{}},\"parent\":{\"250\":{},\"251\":{},\"252\":{},\"253\":{}}}],[\"gesture\",{\"_index\":17,\"name\":{\"22\":{},\"65\":{},\"383\":{},\"464\":{}},\"parent\":{}}],[\"gestureconfig\",{\"_index\":238,\"name\":{\"366\":{}},\"parent\":{\"367\":{}}}],[\"gestureresult\",{\"_index\":280,\"name\":{\"448\":{}},\"parent\":{}}],[\"gestures\",{\"_index\":286,\"name\":{\"457\":{}},\"parent\":{}}],[\"getintermediatetensors\",{\"_index\":131,\"name\":{\"168\":{}},\"parent\":{}}],[\"gl\",{\"_index\":26,\"name\":{\"35\":{}},\"parent\":{}}],[\"graphmodel\",{\"_index\":117,\"name\":{\"150\":{}},\"parent\":{\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{}}}],[\"hand\",{\"_index\":16,\"name\":{\"20\":{},\"68\":{},\"386\":{},\"463\":{}},\"parent\":{}}],[\"handconfig\",{\"_index\":214,\"name\":{\"316\":{}},\"parent\":{\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"325\":{},\"326\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{}}}],[\"handconfig.__type\",{\"_index\":216,\"name\":{},\"parent\":{\"324\":{},\"327\":{}}}],[\"handgesture\",{\"_index\":172,\"name\":{\"228\":{}},\"parent\":{}}],[\"handpose\",{\"_index\":83,\"name\":{\"112\":{}},\"parent\":{}}],[\"handresult\",{\"_index\":275,\"name\":{\"430\":{}},\"parent\":{\"431\":{},\"432\":{},\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{},\"438\":{},\"439\":{},\"440\":{}}}],[\"hands\",{\"_index\":282,\"name\":{\"453\":{}},\"parent\":{}}],[\"handskeleton\",{\"_index\":84,\"name\":{\"113\":{}},\"parent\":{}}],[\"handtrack\",{\"_index\":85,\"name\":{\"114\":{}},\"parent\":{}}],[\"handtype\",{\"_index\":177,\"name\":{\"234\":{}},\"parent\":{}}],[\"height\",{\"_index\":224,\"name\":{\"350\":{}},\"parent\":{}}],[\"hue\",{\"_index\":230,\"name\":{\"358\":{}},\"parent\":{}}],[\"human\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{}}}],[\"human.__type\",{\"_index\":9,\"name\":{},\"parent\":{\"8\":{},\"9\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{}}}],[\"id\",{\"_index\":91,\"name\":{\"123\":{},\"391\":{},\"424\":{},\"431\":{},\"442\":{},\"450\":{}},\"parent\":{}}],[\"image\",{\"_index\":34,\"name\":{\"46\":{},\"222\":{}},\"parent\":{}}],[\"imagedata\",{\"_index\":167,\"name\":{\"223\":{}},\"parent\":{}}],[\"imageobjects\",{\"_index\":187,\"name\":{\"246\":{}},\"parent\":{}}],[\"init\",{\"_index\":38,\"name\":{\"50\":{}},\"parent\":{}}],[\"initial\",{\"_index\":148,\"name\":{\"192\":{}},\"parent\":{}}],[\"input\",{\"_index\":189,\"name\":{\"248\":{}},\"parent\":{}}],[\"inputnodes\",{\"_index\":119,\"name\":{\"153\":{}},\"parent\":{}}],[\"inputs\",{\"_index\":121,\"name\":{\"155\":{}},\"parent\":{}}],[\"iouthreshold\",{\"_index\":199,\"name\":{\"258\":{},\"319\":{},\"334\":{}},\"parent\":{}}],[\"iris\",{\"_index\":211,\"name\":{\"300\":{},\"406\":{}},\"parent\":{}}],[\"irisgesture\",{\"_index\":173,\"name\":{\"229\":{}},\"parent\":{}}],[\"isdisposed\",{\"_index\":110,\"name\":{\"142\":{}},\"parent\":{}}],[\"kept\",{\"_index\":97,\"name\":{\"129\":{}},\"parent\":{}}],[\"kernels\",{\"_index\":166,\"name\":{\"220\":{}},\"parent\":{}}],[\"keypoints\",{\"_index\":274,\"name\":{\"428\":{},\"437\":{}},\"parent\":{}}],[\"kodachrome\",{\"_index\":234,\"name\":{\"362\":{}},\"parent\":{}}],[\"label\",{\"_index\":277,\"name\":{\"438\":{},\"445\":{}},\"parent\":{}}],[\"labelcolor\",{\"_index\":52,\"name\":{\"76\":{}},\"parent\":{}}],[\"landmarks\",{\"_index\":215,\"name\":{\"321\":{},\"440\":{}},\"parent\":{}}],[\"left\",{\"_index\":283,\"name\":{\"455\":{}},\"parent\":{}}],[\"lineheight\",{\"_index\":55,\"name\":{\"79\":{}},\"parent\":{}}],[\"linewidth\",{\"_index\":56,\"name\":{\"80\":{}},\"parent\":{}}],[\"live\",{\"_index\":262,\"name\":{\"408\":{}},\"parent\":{}}],[\"liveness\",{\"_index\":86,\"name\":{\"115\":{},\"304\":{}},\"parent\":{}}],[\"load\",{\"_index\":39,\"name\":{\"51\":{},\"95\":{},\"162\":{}},\"parent\":{}}],[\"loadsync\",{\"_index\":126,\"name\":{\"163\":{}},\"parent\":{}}],[\"mask\",{\"_index\":200,\"name\":{\"259\":{}},\"parent\":{}}],[\"match\",{\"_index\":32,\"name\":{\"43\":{},\"58\":{},\"61\":{}},\"parent\":{\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{}}}],[\"matchoptions\",{\"_index\":47,\"name\":{\"63\":{}},\"parent\":{}}],[\"maxdetected\",{\"_index\":197,\"name\":{\"256\":{},\"310\":{},\"320\":{},\"335\":{}},\"parent\":{}}],[\"mesh\",{\"_index\":210,\"name\":{\"299\":{},\"397\":{}},\"parent\":{}}],[\"meshraw\",{\"_index\":256,\"name\":{\"398\":{}},\"parent\":{}}],[\"metadata\",{\"_index\":124,\"name\":{\"158\":{}},\"parent\":{}}],[\"minconfidence\",{\"_index\":198,\"name\":{\"257\":{},\"276\":{},\"282\":{},\"311\":{},\"318\":{},\"333\":{}},\"parent\":{}}],[\"mobilefacenet\",{\"_index\":76,\"name\":{\"105\":{}},\"parent\":{}}],[\"model\",{\"_index\":164,\"name\":{\"218\":{}},\"parent\":{}}],[\"modelbasepath\",{\"_index\":245,\"name\":{\"377\":{}},\"parent\":{}}],[\"modelpath\",{\"_index\":192,\"name\":{\"251\":{},\"262\":{},\"267\":{},\"272\":{},\"278\":{},\"284\":{},\"289\":{},\"294\":{},\"306\":{},\"313\":{},\"324\":{},\"327\":{},\"329\":{},\"337\":{},\"343\":{}},\"parent\":{}}],[\"models\",{\"_index\":68,\"name\":{\"93\":{},\"97\":{},\"183\":{}},\"parent\":{\"94\":{},\"95\":{},\"96\":{},\"97\":{}}}],[\"models.models\",{\"_index\":69,\"name\":{},\"parent\":{\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{}}}],[\"modelsignature\",{\"_index\":125,\"name\":{\"160\":{}},\"parent\":{}}],[\"modelversion\",{\"_index\":118,\"name\":{\"152\":{}},\"parent\":{}}],[\"movenet\",{\"_index\":87,\"name\":{\"116\":{}},\"parent\":{}}],[\"multithread\",{\"_index\":158,\"name\":{\"204\":{}},\"parent\":{}}],[\"nanodet\",{\"_index\":88,\"name\":{\"117\":{}},\"parent\":{}}],[\"negative\",{\"_index\":231,\"name\":{\"359\":{}},\"parent\":{}}],[\"next\",{\"_index\":41,\"name\":{\"53\":{}},\"parent\":{}}],[\"node\",{\"_index\":143,\"name\":{\"187\":{}},\"parent\":{}}],[\"now\",{\"_index\":33,\"name\":{\"45\":{}},\"parent\":{}}],[\"object\",{\"_index\":18,\"name\":{\"24\":{},\"69\":{},\"387\":{},\"465\":{}},\"parent\":{}}],[\"objectconfig\",{\"_index\":218,\"name\":{\"332\":{}},\"parent\":{\"333\":{},\"334\":{},\"335\":{},\"336\":{},\"337\":{},\"338\":{},\"339\":{}}}],[\"objectresult\",{\"_index\":278,\"name\":{\"441\":{}},\"parent\":{\"442\":{},\"443\":{},\"444\":{},\"445\":{},\"446\":{},\"447\":{}}}],[\"objecttype\",{\"_index\":183,\"name\":{\"240\":{}},\"parent\":{}}],[\"offscreen\",{\"_index\":152,\"name\":{\"197\":{}},\"parent\":{}}],[\"options\",{\"_index\":21,\"name\":{\"30\":{},\"92\":{}},\"parent\":{}}],[\"outputnodes\",{\"_index\":120,\"name\":{\"154\":{}},\"parent\":{}}],[\"outputs\",{\"_index\":122,\"name\":{\"156\":{}},\"parent\":{}}],[\"part\",{\"_index\":270,\"name\":{\"418\":{}},\"parent\":{}}],[\"perfadd\",{\"_index\":153,\"name\":{\"198\":{}},\"parent\":{}}],[\"performance\",{\"_index\":25,\"name\":{\"34\":{},\"466\":{}},\"parent\":{}}],[\"person\",{\"_index\":19,\"name\":{\"26\":{},\"70\":{}},\"parent\":{}}],[\"personresult\",{\"_index\":281,\"name\":{\"449\":{}},\"parent\":{\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{},\"457\":{},\"458\":{},\"459\":{}}}],[\"personresult.__type\",{\"_index\":284,\"name\":{},\"parent\":{\"455\":{},\"456\":{}}}],[\"persons\",{\"_index\":288,\"name\":{\"469\":{}},\"parent\":{}}],[\"pixelate\",{\"_index\":237,\"name\":{\"365\":{}},\"parent\":{}}],[\"platform\",{\"_index\":145,\"name\":{\"189\":{}},\"parent\":{}}],[\"point\",{\"_index\":141,\"name\":{\"182\":{}},\"parent\":{}}],[\"pointsize\",{\"_index\":57,\"name\":{\"81\":{}},\"parent\":{}}],[\"polaroid\",{\"_index\":236,\"name\":{\"364\":{}},\"parent\":{}}],[\"posenet\",{\"_index\":89,\"name\":{\"118\":{}},\"parent\":{}}],[\"position\",{\"_index\":271,\"name\":{\"419\":{}},\"parent\":{}}],[\"positionraw\",{\"_index\":272,\"name\":{\"420\":{}},\"parent\":{}}],[\"predict\",{\"_index\":128,\"name\":{\"165\":{}},\"parent\":{}}],[\"print\",{\"_index\":112,\"name\":{\"144\":{}},\"parent\":{}}],[\"process\",{\"_index\":6,\"name\":{\"6\":{}},\"parent\":{}}],[\"profile\",{\"_index\":43,\"name\":{\"55\":{}},\"parent\":{}}],[\"r0\",{\"_index\":133,\"name\":{\"172\":{}},\"parent\":{}}],[\"r1\",{\"_index\":134,\"name\":{\"173\":{}},\"parent\":{}}],[\"r2\",{\"_index\":135,\"name\":{\"174\":{}},\"parent\":{}}],[\"r3\",{\"_index\":136,\"name\":{\"175\":{}},\"parent\":{}}],[\"r4\",{\"_index\":137,\"name\":{\"176\":{}},\"parent\":{}}],[\"r5\",{\"_index\":138,\"name\":{\"177\":{}},\"parent\":{}}],[\"r6\",{\"_index\":139,\"name\":{\"178\":{}},\"parent\":{}}],[\"race\",{\"_index\":179,\"name\":{\"236\":{},\"404\":{}},\"parent\":{}}],[\"rank\",{\"_index\":100,\"name\":{\"132\":{},\"171\":{}},\"parent\":{\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{}}}],[\"ranktype\",{\"_index\":96,\"name\":{\"128\":{}},\"parent\":{}}],[\"real\",{\"_index\":261,\"name\":{\"407\":{}},\"parent\":{}}],[\"renderer\",{\"_index\":160,\"name\":{\"210\":{}},\"parent\":{}}],[\"reset\",{\"_index\":28,\"name\":{\"37\":{},\"94\":{}},\"parent\":{}}],[\"result\",{\"_index\":4,\"name\":{\"4\":{},\"460\":{}},\"parent\":{\"461\":{},\"462\":{},\"463\":{},\"464\":{},\"465\":{},\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{}}}],[\"return\",{\"_index\":201,\"name\":{\"260\":{},\"351\":{}},\"parent\":{}}],[\"right\",{\"_index\":285,\"name\":{\"456\":{}},\"parent\":{}}],[\"rotation\",{\"_index\":196,\"name\":{\"255\":{},\"317\":{},\"409\":{}},\"parent\":{}}],[\"roundrect\",{\"_index\":58,\"name\":{\"82\":{}},\"parent\":{}}],[\"saturation\",{\"_index\":229,\"name\":{\"357\":{}},\"parent\":{}}],[\"save\",{\"_index\":127,\"name\":{\"164\":{}},\"parent\":{}}],[\"scopeid\",{\"_index\":98,\"name\":{\"130\":{}},\"parent\":{}}],[\"score\",{\"_index\":252,\"name\":{\"392\":{},\"422\":{},\"425\":{},\"432\":{},\"443\":{}},\"parent\":{}}],[\"segmentation\",{\"_index\":35,\"name\":{\"47\":{},\"119\":{},\"388\":{}},\"parent\":{}}],[\"segmentationconfig\",{\"_index\":219,\"name\":{\"340\":{}},\"parent\":{\"341\":{},\"342\":{},\"343\":{},\"344\":{},\"345\":{}}}],[\"sepia\",{\"_index\":232,\"name\":{\"360\":{}},\"parent\":{}}],[\"shadowcolor\",{\"_index\":53,\"name\":{\"77\":{}},\"parent\":{}}],[\"shape\",{\"_index\":93,\"name\":{\"125\":{}},\"parent\":{}}],[\"sharpness\",{\"_index\":228,\"name\":{\"355\":{}},\"parent\":{}}],[\"simd\",{\"_index\":157,\"name\":{\"203\":{}},\"parent\":{}}],[\"similarity\",{\"_index\":30,\"name\":{\"39\":{},\"60\":{}},\"parent\":{}}],[\"size\",{\"_index\":94,\"name\":{\"126\":{}},\"parent\":{}}],[\"skeleton\",{\"_index\":217,\"name\":{\"325\":{}},\"parent\":{}}],[\"skipallowed\",{\"_index\":249,\"name\":{\"381\":{}},\"parent\":{}}],[\"skipframes\",{\"_index\":193,\"name\":{\"252\":{},\"263\":{},\"268\":{},\"273\":{},\"279\":{},\"285\":{},\"290\":{},\"295\":{},\"307\":{},\"314\":{},\"330\":{},\"338\":{},\"344\":{}},\"parent\":{}}],[\"skiptime\",{\"_index\":194,\"name\":{\"253\":{},\"264\":{},\"269\":{},\"274\":{},\"280\":{},\"286\":{},\"291\":{},\"296\":{},\"308\":{},\"315\":{},\"331\":{},\"339\":{},\"345\":{}},\"parent\":{}}],[\"ssrnetage\",{\"_index\":70,\"name\":{\"99\":{}},\"parent\":{}}],[\"ssrnetgender\",{\"_index\":82,\"name\":{\"111\":{}},\"parent\":{}}],[\"state\",{\"_index\":5,\"name\":{\"5\":{}},\"parent\":{}}],[\"strides\",{\"_index\":99,\"name\":{\"131\":{}},\"parent\":{}}],[\"supported\",{\"_index\":155,\"name\":{\"201\":{},\"207\":{},\"213\":{}},\"parent\":{}}],[\"technicolor\",{\"_index\":235,\"name\":{\"363\":{}},\"parent\":{}}],[\"tensor\",{\"_index\":8,\"name\":{\"8\":{},\"121\":{},\"148\":{},\"410\":{}},\"parent\":{\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{}}}],[\"tensorlike\",{\"_index\":116,\"name\":{\"149\":{}},\"parent\":{}}],[\"tf\",{\"_index\":11,\"name\":{\"10\":{}},\"parent\":{}}],[\"tfjs\",{\"_index\":150,\"name\":{\"194\":{}},\"parent\":{}}],[\"throwifdisposed\",{\"_index\":111,\"name\":{\"143\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":287,\"name\":{\"468\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":114,\"name\":{\"146\":{}},\"parent\":{}}],[\"updatebackend\",{\"_index\":168,\"name\":{\"224\":{}},\"parent\":{}}],[\"updatecpu\",{\"_index\":169,\"name\":{\"225\":{}},\"parent\":{}}],[\"usecurves\",{\"_index\":67,\"name\":{\"91\":{}},\"parent\":{}}],[\"usedepth\",{\"_index\":66,\"name\":{\"90\":{}},\"parent\":{}}],[\"validate\",{\"_index\":29,\"name\":{\"38\":{},\"96\":{}},\"parent\":{}}],[\"variable\",{\"_index\":115,\"name\":{\"147\":{}},\"parent\":{}}],[\"version\",{\"_index\":2,\"name\":{\"2\":{},\"196\":{},\"209\":{}},\"parent\":{}}],[\"vintage\",{\"_index\":233,\"name\":{\"361\":{}},\"parent\":{}}],[\"warmup\",{\"_index\":42,\"name\":{\"54\":{},\"376\":{}},\"parent\":{}}],[\"warmuptype\",{\"_index\":240,\"name\":{\"369\":{}},\"parent\":{}}],[\"wasm\",{\"_index\":154,\"name\":{\"199\":{}},\"parent\":{}}],[\"wasmpath\",{\"_index\":241,\"name\":{\"372\":{}},\"parent\":{}}],[\"wasmplatformfetch\",{\"_index\":242,\"name\":{\"373\":{}},\"parent\":{}}],[\"webgl\",{\"_index\":159,\"name\":{\"205\":{}},\"parent\":{}}],[\"webgpu\",{\"_index\":161,\"name\":{\"211\":{}},\"parent\":{}}],[\"weights\",{\"_index\":123,\"name\":{\"157\":{}},\"parent\":{}}],[\"width\",{\"_index\":223,\"name\":{\"349\":{}},\"parent\":{}}],[\"worker\",{\"_index\":144,\"name\":{\"188\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/typedoc/classes/Env.html b/typedoc/classes/Env.html index d8a2bc44..e348cb21 100644 --- a/typedoc/classes/Env.html +++ b/typedoc/classes/Env.html @@ -42,4 +42,4 @@

update backend information

Returns Promise<void>

  • updateCPU(): Promise<void>

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method

Settings

Theme

\ No newline at end of file +

Returns Promise<void>

Legend

  • Constructor
  • Property
  • Method
  • Property

Settings

Theme

\ No newline at end of file diff --git a/typedoc/classes/GraphModel.html b/typedoc/classes/GraphModel.html index 8f041c4f..cd88e6fa 100644 --- a/typedoc/classes/GraphModel.html +++ b/typedoc/classes/GraphModel.html @@ -93,4 +93,4 @@ scheme-based string shortcut for IOHandler.

Returns Promise<SaveResult>

A Promise of SaveResult, which summarizes the result of the saving, such as byte sizes of the saved artifacts for the model's topology and weight values.

-

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Property

Settings

Theme

\ No newline at end of file diff --git a/typedoc/classes/Human.html b/typedoc/classes/Human.html index 206b7e73..21530c6d 100644 --- a/typedoc/classes/Human.html +++ b/typedoc/classes/Human.html @@ -215,4 +215,4 @@ Interpolation is based on time since last known result so can be called independ

Parameters

Returns Promise<undefined | Result>

result - Result

-

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Property

Settings

Theme

\ No newline at end of file diff --git a/typedoc/classes/Tensor.html b/typedoc/classes/Tensor.html index 12b7646a..6558e724 100644 --- a/typedoc/classes/Tensor.html +++ b/typedoc/classes/Tensor.html @@ -83,4 +83,4 @@ This means that the texture will use the RGBA channels to store value.

Returns void

  • throwIfDisposed(): void
  • Returns void

  • toString(verbose?: boolean): string
  • Returns a human-readable description of the tensor. Useful for logging.

    doc

    {heading: 'Tensors', subheading: 'Classes'}

    -

    Parameters

    • Optional verbose: boolean

    Returns string

  • variable(trainable?: boolean, name?: string, dtype?: keyof DataTypeMap): Variable<R>
  • Parameters

    • Optional trainable: boolean
    • Optional name: string
    • Optional dtype: keyof DataTypeMap

    Returns Variable<R>

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Method

Settings

Theme

\ No newline at end of file +

Parameters

  • Optional verbose: boolean

Returns string

  • variable(trainable?: boolean, name?: string, dtype?: keyof DataTypeMap): Variable<R>
  • Parameters

    • Optional trainable: boolean
    • Optional name: string
    • Optional dtype: keyof DataTypeMap

    Returns Variable<R>

Legend

  • Constructor
  • Property
  • Method
  • Property

Settings

Theme

\ No newline at end of file diff --git a/typedoc/classes/models.Models.html b/typedoc/classes/models.Models.html index 7f950632..202586d6 100644 --- a/typedoc/classes/models.Models.html +++ b/typedoc/classes/models.Models.html @@ -6,4 +6,4 @@
  • initialized implicity on first call to human.detect()
  • each model can be null if not loaded, instance of GraphModel if loaded or Promise if loading
  • -

    Hierarchy

    • Models

    Index

    Constructors

    Properties

    antispoof: null | GraphModel | Promise<GraphModel> = null
    blazepose: null | GraphModel | Promise<GraphModel> = null
    blazeposedetect: null | GraphModel | Promise<GraphModel> = null
    centernet: null | GraphModel | Promise<GraphModel> = null
    efficientpose: null | GraphModel | Promise<GraphModel> = null
    emotion: null | GraphModel | Promise<GraphModel> = null
    facedetect: null | GraphModel | Promise<GraphModel> = null
    faceiris: null | GraphModel | Promise<GraphModel> = null
    facemesh: null | GraphModel | Promise<GraphModel> = null
    faceres: null | GraphModel | Promise<GraphModel> = null
    gear: null | GraphModel | Promise<GraphModel> = null
    handpose: null | GraphModel | Promise<GraphModel> = null
    handskeleton: null | GraphModel | Promise<GraphModel> = null
    handtrack: null | GraphModel | Promise<GraphModel> = null
    liveness: null | GraphModel | Promise<GraphModel> = null
    mobilefacenet: null | GraphModel | Promise<GraphModel> = null
    movenet: null | GraphModel | Promise<GraphModel> = null
    nanodet: null | GraphModel | Promise<GraphModel> = null
    posenet: null | GraphModel | Promise<GraphModel> = null
    segmentation: null | GraphModel | Promise<GraphModel> = null
    ssrnetage: null | GraphModel | Promise<GraphModel> = null
    ssrnetgender: null | GraphModel | Promise<GraphModel> = null

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Hierarchy

    • Models

    Index

    Constructors

    Properties

    antispoof: null | GraphModel | Promise<GraphModel> = null
    blazepose: null | GraphModel | Promise<GraphModel> = null
    blazeposedetect: null | GraphModel | Promise<GraphModel> = null
    centernet: null | GraphModel | Promise<GraphModel> = null
    efficientpose: null | GraphModel | Promise<GraphModel> = null
    emotion: null | GraphModel | Promise<GraphModel> = null
    facedetect: null | GraphModel | Promise<GraphModel> = null
    faceiris: null | GraphModel | Promise<GraphModel> = null
    facemesh: null | GraphModel | Promise<GraphModel> = null
    faceres: null | GraphModel | Promise<GraphModel> = null
    gear: null | GraphModel | Promise<GraphModel> = null
    handpose: null | GraphModel | Promise<GraphModel> = null
    handskeleton: null | GraphModel | Promise<GraphModel> = null
    handtrack: null | GraphModel | Promise<GraphModel> = null
    liveness: null | GraphModel | Promise<GraphModel> = null
    mobilefacenet: null | GraphModel | Promise<GraphModel> = null
    movenet: null | GraphModel | Promise<GraphModel> = null
    nanodet: null | GraphModel | Promise<GraphModel> = null
    posenet: null | GraphModel | Promise<GraphModel> = null
    segmentation: null | GraphModel | Promise<GraphModel> = null
    ssrnetage: null | GraphModel | Promise<GraphModel> = null
    ssrnetgender: null | GraphModel | Promise<GraphModel> = null

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/enums/Rank.html b/typedoc/enums/Rank.html index e38923ce..a52f2b45 100644 --- a/typedoc/enums/Rank.html +++ b/typedoc/enums/Rank.html @@ -1 +1 @@ -Rank | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Index

    Enumeration members

    Enumeration members

    R0 = "R0"
    R1 = "R1"
    R2 = "R2"
    R3 = "R3"
    R4 = "R4"
    R5 = "R5"
    R6 = "R6"

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +Rank | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Index

    Enumeration members

    Enumeration members

    R0 = "R0"
    R1 = "R1"
    R2 = "R2"
    R3 = "R3"
    R4 = "R4"
    R5 = "R5"
    R6 = "R6"

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/index.html b/typedoc/index.html index 8afce209..230295d8 100644 --- a/typedoc/index.html +++ b/typedoc/index.html @@ -1,8 +1,8 @@ -@vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    @vladmandic/human - v2.6.5

    Index

    References

    Re-exports Descriptor
    Re-exports DrawOptions
    Re-exports Models
    Renames and re-exports Human

    Type aliases

    AnyCanvas: HTMLCanvasElement | OffscreenCanvas
    +@vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    @vladmandic/human - v2.6.5

    Index

    References

    Re-exports Descriptor
    Re-exports DrawOptions
    Re-exports Models
    Renames and re-exports Human

    Type aliases

    AnyCanvas: HTMLCanvasElement | OffscreenCanvas

    Defines all possible canvas types

    -
    AnyImage: HTMLImageElement | typeof Image
    +
    AnyImage: HTMLImageElement | typeof Image

    Defines all possible image types

    -
    AnyVideo: HTMLMediaElement | HTMLVideoElement
    +
    AnyVideo: HTMLMediaElement | HTMLVideoElement

    Defines all possible video types

    BackendType: ["cpu", "wasm", "webgl", "humangl", "tensorflow", "webgpu"]

    Possible TensorFlow backends

    @@ -10,7 +10,7 @@

    body gesture type

    BodyLandmarkBlazePose: "nose" | "leftEyeInside" | "leftEye" | "leftEyeOutside" | "rightEyeInside" | "rightEye" | "rightEyeOutside" | "leftEar" | "rightEar" | "leftMouth" | "rightMouth" | "leftShoulder" | "rightShoulder" | "leftElbow" | "rightElbow" | "leftWrist" | "rightWrist" | "leftPinky" | "rightPinky" | "leftIndex" | "rightIndex" | "leftThumb" | "rightThumb" | "leftHip" | "rightHip" | "leftKnee" | "rightKnee" | "leftAnkle" | "rightAnkle" | "leftHeel" | "rightHeel" | "leftFoot" | "rightFoot" | "bodyCenter" | "bodyTop" | "leftPalm" | "leftHand" | "rightPalm" | "rightHand"
    BodyLandmarkEfficientNet: "head" | "neck" | "rightShoulder" | "rightElbow" | "rightWrist" | "chest" | "leftShoulder" | "leftElbow" | "leftWrist" | "bodyCenter" | "rightHip" | "rightKnee" | "rightAnkle" | "leftHip" | "leftKnee" | "leftAnkle"
    BodyLandmarkMoveNet: "nose" | "leftEye" | "rightEye" | "leftEar" | "rightEar" | "leftShoulder" | "rightShoulder" | "leftElbow" | "rightElbow" | "leftWrist" | "rightWrist" | "leftHip" | "rightHip" | "leftKnee" | "rightKnee" | "leftAnkle" | "rightAnkle"
    BodyLandmarkPoseNet: "nose" | "leftEye" | "rightEye" | "leftEar" | "rightEar" | "leftShoulder" | "rightShoulder" | "leftElbow" | "rightElbow" | "leftWrist" | "rightWrist" | "leftHip" | "rightHip" | "leftKnee" | "rightKnee" | "leftAnkle" | "rightAnkle"
    Box: [number, number, number, number]

    generic box as [x, y, width, height]

    -
    Emotion: "angry" | "disgust" | "fear" | "happy" | "sad" | "surprise" | "neutral"
    Events: "create" | "load" | "image" | "result" | "warmup" | "error"
    +
    Emotion: "angry" | "disgust" | "fear" | "happy" | "sad" | "surprise" | "neutral"
    Events: "create" | "load" | "image" | "result" | "warmup" | "error"

    Events dispatched by human.events

    • create: triggered when Human object is instantiated
    • @@ -19,7 +19,7 @@
    • result: triggered when detection is complete
    • warmup: triggered when warmup is complete
    -
    ExternalCanvas: typeof Canvas
    +
    ExternalCanvas: typeof Canvas

    Defines possible externally defined canvas

    FaceGesture: `facing ${"left" | "center" | "right"}` | `blink ${"left" | "right"} eye` | `mouth ${number}% open` | `head ${"up" | "down"}`

    face gesture type

    @@ -32,9 +32,9 @@ Each result has:

    HandGesture: `${"thumb" | "index" | "middle" | "ring" | "pinky"} forward` | `${"thumb" | "index" | "middle" | "ring" | "pinky"} up` | "victory" | "thumbs up"

    hand gesture type

    -
    HandType: "hand" | "fist" | "pinch" | "point" | "face" | "tip" | "pinchtip"
    ImageObjects: ImageData | ImageBitmap
    +
    HandType: "hand" | "fist" | "pinch" | "point" | "face" | "tip" | "pinchtip"
    ImageObjects: ImageData | ImageBitmap

    Defines all possible image objects

    -
    +

    Defines all possible input types for Human detection

    IrisGesture: "facing center" | `looking ${"left" | "right" | "up" | "down"}` | "looking center"

    iris gesture type

    @@ -47,4 +47,4 @@ Each result has:

    -
    env: Env = ...

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +
    env: Env = ...

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/BodyConfig.html b/typedoc/interfaces/BodyConfig.html index 27901979..99c2a05a 100644 --- a/typedoc/interfaces/BodyConfig.html +++ b/typedoc/interfaces/BodyConfig.html @@ -14,4 +14,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/BodyKeypoint.html b/typedoc/interfaces/BodyKeypoint.html index 4f1379ef..0b911724 100644 --- a/typedoc/interfaces/BodyKeypoint.html +++ b/typedoc/interfaces/BodyKeypoint.html @@ -10,4 +10,4 @@

    body part position normalized to 0..1

    score: number

    body part detection score

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/BodyResult.html b/typedoc/interfaces/BodyResult.html index 49271be2..313bcd77 100644 --- a/typedoc/interfaces/BodyResult.html +++ b/typedoc/interfaces/BodyResult.html @@ -12,4 +12,4 @@

    detected body keypoints

    score: number

    body detection score

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/CanvasDrawImage.html b/typedoc/interfaces/CanvasDrawImage.html deleted file mode 100644 index 4b529679..00000000 --- a/typedoc/interfaces/CanvasDrawImage.html +++ /dev/null @@ -1 +0,0 @@ -CanvasDrawImage | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    Index

    Methods

    Methods

    • drawImage(image: OffscreenCanvas | CanvasImageSource, dx: number, dy: number): void
    • drawImage(image: OffscreenCanvas | CanvasImageSource, dx: number, dy: number, dw: number, dh: number): void
    • drawImage(image: OffscreenCanvas | CanvasImageSource, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/Config.html b/typedoc/interfaces/Config.html index e69d3354..c5dffa2d 100644 --- a/typedoc/interfaces/Config.html +++ b/typedoc/interfaces/Config.html @@ -63,4 +63,4 @@ default: true if indexdb is available (browsers), false if its not (nodejs)

    wasmPlatformFetch: boolean

    Force WASM loader to use platform fetch

    default: auto-detects to link to CDN jsdelivr when running in browser

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceAntiSpoofConfig.html b/typedoc/interfaces/FaceAntiSpoofConfig.html index e50b28d7..256507fb 100644 --- a/typedoc/interfaces/FaceAntiSpoofConfig.html +++ b/typedoc/interfaces/FaceAntiSpoofConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceConfig.html b/typedoc/interfaces/FaceConfig.html index 14173393..45bb255f 100644 --- a/typedoc/interfaces/FaceConfig.html +++ b/typedoc/interfaces/FaceConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceDescriptionConfig.html b/typedoc/interfaces/FaceDescriptionConfig.html index 6da33569..fe4ec261 100644 --- a/typedoc/interfaces/FaceDescriptionConfig.html +++ b/typedoc/interfaces/FaceDescriptionConfig.html @@ -15,4 +15,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceDetectorConfig.html b/typedoc/interfaces/FaceDetectorConfig.html index 93d96cc1..a78154b6 100644 --- a/typedoc/interfaces/FaceDetectorConfig.html +++ b/typedoc/interfaces/FaceDetectorConfig.html @@ -24,4 +24,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceEmotionConfig.html b/typedoc/interfaces/FaceEmotionConfig.html index 245e8cd3..13661b85 100644 --- a/typedoc/interfaces/FaceEmotionConfig.html +++ b/typedoc/interfaces/FaceEmotionConfig.html @@ -12,4 +12,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceIrisConfig.html b/typedoc/interfaces/FaceIrisConfig.html index 2d9087ac..335c184b 100644 --- a/typedoc/interfaces/FaceIrisConfig.html +++ b/typedoc/interfaces/FaceIrisConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceLivenessConfig.html b/typedoc/interfaces/FaceLivenessConfig.html index 828491e5..5f27e933 100644 --- a/typedoc/interfaces/FaceLivenessConfig.html +++ b/typedoc/interfaces/FaceLivenessConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceMeshConfig.html b/typedoc/interfaces/FaceMeshConfig.html index 55419908..5b7390a5 100644 --- a/typedoc/interfaces/FaceMeshConfig.html +++ b/typedoc/interfaces/FaceMeshConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FaceResult.html b/typedoc/interfaces/FaceResult.html index 4933d4b0..caee06c0 100644 --- a/typedoc/interfaces/FaceResult.html +++ b/typedoc/interfaces/FaceResult.html @@ -44,4 +44,4 @@

    overall face score

    tensor?: Tensor<Rank>

    detected face as tensor that can be used in further pipelines

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/FilterConfig.html b/typedoc/interfaces/FilterConfig.html index 7a3668ec..12b1afda 100644 --- a/typedoc/interfaces/FilterConfig.html +++ b/typedoc/interfaces/FilterConfig.html @@ -55,4 +55,4 @@
  • if just one is set, second one is scaled automatically
  • if both are set, values are used as-is
  • -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/GenericConfig.html b/typedoc/interfaces/GenericConfig.html index 19da357f..84a5e404 100644 --- a/typedoc/interfaces/GenericConfig.html +++ b/typedoc/interfaces/GenericConfig.html @@ -10,4 +10,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/GestureConfig.html b/typedoc/interfaces/GestureConfig.html index 949dbb4a..c18365bc 100644 --- a/typedoc/interfaces/GestureConfig.html +++ b/typedoc/interfaces/GestureConfig.html @@ -2,4 +2,4 @@

    Controlls gesture detection

    Hierarchy

    • GestureConfig

    Index

    Properties

    Properties

    enabled: boolean

    is gesture detection enabled?

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/HandConfig.html b/typedoc/interfaces/HandConfig.html index 5267a0bf..61fe28ed 100644 --- a/typedoc/interfaces/HandConfig.html +++ b/typedoc/interfaces/HandConfig.html @@ -24,4 +24,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/HandResult.html b/typedoc/interfaces/HandResult.html index 17fffe3e..805f4014 100644 --- a/typedoc/interfaces/HandResult.html +++ b/typedoc/interfaces/HandResult.html @@ -20,4 +20,4 @@

    detected hand parts annotated with part gestures

    score: number

    hand overal score

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/ObjectConfig.html b/typedoc/interfaces/ObjectConfig.html index 986141e2..13ee83c5 100644 --- a/typedoc/interfaces/ObjectConfig.html +++ b/typedoc/interfaces/ObjectConfig.html @@ -16,4 +16,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/ObjectResult.html b/typedoc/interfaces/ObjectResult.html index fb666054..8c7c1f95 100644 --- a/typedoc/interfaces/ObjectResult.html +++ b/typedoc/interfaces/ObjectResult.html @@ -12,4 +12,4 @@

    detected object class name

    score: number

    object detection score

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/OffscreenCanvas.html b/typedoc/interfaces/OffscreenCanvas.html deleted file mode 100644 index 0e2c8b1c..00000000 --- a/typedoc/interfaces/OffscreenCanvas.html +++ /dev/null @@ -1,25 +0,0 @@ -OffscreenCanvas | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Hierarchy

    • EventTarget
      • OffscreenCanvas

    Index

    Properties

    height: number
    width: number

    Methods

    • addEventListener(type: string, callback: null | EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void
    • addEventListener(type: string, callback: null | EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void
    • -

      Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.

      -

      The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options's capture.

      -

      When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.

      -

      When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.

      -

      When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.

      -

      If an AbortSignal is passed for options's signal, then the event listener will be removed when signal is aborted.

      -

      The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.

      -

      Parameters

      • type: string
      • callback: null | EventListenerOrEventListenerObject
      • Optional options: boolean | AddEventListenerOptions

      Returns void

    • -

      Appends an event listener for events whose type attribute value is type. The callback argument sets the callback that will be invoked when the event is dispatched.

      -

      The options argument sets listener-specific options. For compatibility this can be a boolean, in which case the method behaves exactly as if the value was specified as options's capture.

      -

      When set to true, options's capture prevents callback from being invoked when the event's eventPhase attribute value is BUBBLING_PHASE. When false (or not present), callback will not be invoked when event's eventPhase attribute value is CAPTURING_PHASE. Either way, callback will be invoked if event's eventPhase attribute value is AT_TARGET.

      -

      When set to true, options's passive indicates that the callback will not cancel the event by invoking preventDefault(). This is used to enable performance optimizations described in § 2.8 Observing event listeners.

      -

      When set to true, options's once indicates that the callback will only be invoked once after which the event listener will be removed.

      -

      If an AbortSignal is passed for options's signal, then the event listener will be removed when signal is aborted.

      -

      The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.

      -

      Parameters

      • type: string
      • callback: null | EventListenerOrEventListenerObject
      • Optional options: boolean | AddEventListenerOptions

      Returns void

    • convertToBlob(options?: { quality?: number; type?: string }): Promise<Blob>
    • Parameters

      • Optional options: { quality?: number; type?: string }
        • Optional quality?: number
        • Optional type?: string

      Returns Promise<Blob>

    • dispatchEvent(event: Event): boolean
    • dispatchEvent(event: Event): boolean
    • -

      Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

      -

      Parameters

      • event: Event

      Returns boolean

    • -

      Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.

      -

      Parameters

      • event: Event

      Returns boolean

    • getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): null | OffscreenCanvasRenderingContext2D
    • getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): null | ImageBitmapRenderingContext
    • getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): null | WebGLRenderingContext
    • getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): null | WebGL2RenderingContext
    • removeEventListener(type: string, callback: null | EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void
    • removeEventListener(type: string, callback: null | EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void
    • -

      Removes the event listener in target's event listener list with the same type, callback, and options.

      -

      Parameters

      • type: string
      • callback: null | EventListenerOrEventListenerObject
      • Optional options: boolean | EventListenerOptions

      Returns void

    • -

      Removes the event listener in target's event listener list with the same type, callback, and options.

      -

      Parameters

      • type: string
      • callback: null | EventListenerOrEventListenerObject
      • Optional options: boolean | EventListenerOptions

      Returns void

    • transferToImageBitmap(): ImageBitmap

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/OffscreenCanvasRenderingContext2D.html b/typedoc/interfaces/OffscreenCanvasRenderingContext2D.html deleted file mode 100644 index 36f9df44..00000000 --- a/typedoc/interfaces/OffscreenCanvasRenderingContext2D.html +++ /dev/null @@ -1 +0,0 @@ -OffscreenCanvasRenderingContext2D | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Interface OffscreenCanvasRenderingContext2D

    Hierarchy

    • CanvasState
    • CanvasTransform
    • CanvasCompositing
    • CanvasImageSmoothing
    • CanvasFillStrokeStyles
    • CanvasShadowStyles
    • CanvasFilters
    • CanvasRect
    • CanvasDrawPath
    • CanvasText
    • CanvasDrawImage
    • CanvasImageData
    • CanvasPathDrawingStyles
    • CanvasTextDrawingStyles
    • CanvasPath
      • OffscreenCanvasRenderingContext2D

    Index

    Properties

    direction: CanvasDirection
    fillStyle: string | CanvasGradient | CanvasPattern
    filter: string
    font: string
    globalAlpha: number
    globalCompositeOperation: GlobalCompositeOperation
    imageSmoothingEnabled: boolean
    imageSmoothingQuality: ImageSmoothingQuality
    lineCap: CanvasLineCap
    lineDashOffset: number
    lineJoin: CanvasLineJoin
    lineWidth: number
    miterLimit: number
    shadowBlur: number
    shadowColor: string
    shadowOffsetX: number
    shadowOffsetY: number
    strokeStyle: string | CanvasGradient | CanvasPattern
    textAlign: CanvasTextAlign
    textBaseline: CanvasTextBaseline

    Methods

    • arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
    • arc(x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
    • Parameters

      • x: number
      • y: number
      • radius: number
      • startAngle: number
      • endAngle: number
      • Optional counterclockwise: boolean

      Returns void

    • Parameters

      • x: number
      • y: number
      • radius: number
      • startAngle: number
      • endAngle: number
      • Optional counterclockwise: boolean

      Returns void

    • arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void
    • arcTo(x1: number, y1: number, x2: number, y2: number, radius: number): void
    • Parameters

      • x1: number
      • y1: number
      • x2: number
      • y2: number
      • radius: number

      Returns void

    • Parameters

      • x1: number
      • y1: number
      • x2: number
      • y2: number
      • radius: number

      Returns void

    • beginPath(): void
    • Returns void

    • bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void
    • bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void
    • Parameters

      • cp1x: number
      • cp1y: number
      • cp2x: number
      • cp2y: number
      • x: number
      • y: number

      Returns void

    • Parameters

      • cp1x: number
      • cp1y: number
      • cp2x: number
      • cp2y: number
      • x: number
      • y: number

      Returns void

    • clearRect(x: number, y: number, w: number, h: number): void
    • Parameters

      • x: number
      • y: number
      • w: number
      • h: number

      Returns void

    • clip(fillRule?: CanvasFillRule): void
    • clip(path: Path2D, fillRule?: CanvasFillRule): void
    • Parameters

      • Optional fillRule: CanvasFillRule

      Returns void

    • Parameters

      • path: Path2D
      • Optional fillRule: CanvasFillRule

      Returns void

    • closePath(): void
    • closePath(): void
    • Returns void

    • Returns void

    • createConicGradient(startAngle: number, x: number, y: number): CanvasGradient
    • Parameters

      • startAngle: number
      • x: number
      • y: number

      Returns CanvasGradient

    • createImageData(sw: number, sh: number, settings?: ImageDataSettings): ImageData
    • createImageData(imagedata: ImageData): ImageData
    • Parameters

      • sw: number
      • sh: number
      • Optional settings: ImageDataSettings

      Returns ImageData

    • Parameters

      • imagedata: ImageData

      Returns ImageData

    • createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient
    • Parameters

      • x0: number
      • y0: number
      • x1: number
      • y1: number

      Returns CanvasGradient

    • createPattern(image: CanvasImageSource, repetition: null | string): null | CanvasPattern
    • Parameters

      • image: CanvasImageSource
      • repetition: null | string

      Returns null | CanvasPattern

    • createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient
    • Parameters

      • x0: number
      • y0: number
      • r0: number
      • x1: number
      • y1: number
      • r1: number

      Returns CanvasGradient

    • drawImage(image: OffscreenCanvas | CanvasImageSource, dx: number, dy: number): void
    • drawImage(image: OffscreenCanvas | CanvasImageSource, dx: number, dy: number, dw: number, dh: number): void
    • drawImage(image: OffscreenCanvas | CanvasImageSource, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void
    • ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
    • ellipse(x: number, y: number, radiusX: number, radiusY: number, rotation: number, startAngle: number, endAngle: number, counterclockwise?: boolean): void
    • Parameters

      • x: number
      • y: number
      • radiusX: number
      • radiusY: number
      • rotation: number
      • startAngle: number
      • endAngle: number
      • Optional counterclockwise: boolean

      Returns void

    • Parameters

      • x: number
      • y: number
      • radiusX: number
      • radiusY: number
      • rotation: number
      • startAngle: number
      • endAngle: number
      • Optional counterclockwise: boolean

      Returns void

    • fill(fillRule?: CanvasFillRule): void
    • fill(path: Path2D, fillRule?: CanvasFillRule): void
    • Parameters

      • Optional fillRule: CanvasFillRule

      Returns void

    • Parameters

      • path: Path2D
      • Optional fillRule: CanvasFillRule

      Returns void

    • fillRect(x: number, y: number, w: number, h: number): void
    • Parameters

      • x: number
      • y: number
      • w: number
      • h: number

      Returns void

    • fillText(text: string, x: number, y: number, maxWidth?: number): void
    • Parameters

      • text: string
      • x: number
      • y: number
      • Optional maxWidth: number

      Returns void

    • getImageData(sx: number, sy: number, sw: number, sh: number, settings?: ImageDataSettings): ImageData
    • Parameters

      • sx: number
      • sy: number
      • sw: number
      • sh: number
      • Optional settings: ImageDataSettings

      Returns ImageData

    • getLineDash(): number[]
    • Returns number[]

    • getTransform(): DOMMatrix
    • Returns DOMMatrix

    • isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean
    • isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean
    • Parameters

      • x: number
      • y: number
      • Optional fillRule: CanvasFillRule

      Returns boolean

    • Parameters

      • path: Path2D
      • x: number
      • y: number
      • Optional fillRule: CanvasFillRule

      Returns boolean

    • isPointInStroke(x: number, y: number): boolean
    • isPointInStroke(path: Path2D, x: number, y: number): boolean
    • Parameters

      • x: number
      • y: number

      Returns boolean

    • Parameters

      • path: Path2D
      • x: number
      • y: number

      Returns boolean

    • lineTo(x: number, y: number): void
    • lineTo(x: number, y: number): void
    • Parameters

      • x: number
      • y: number

      Returns void

    • Parameters

      • x: number
      • y: number

      Returns void

    • measureText(text: string): TextMetrics
    • Parameters

      • text: string

      Returns TextMetrics

    • moveTo(x: number, y: number): void
    • moveTo(x: number, y: number): void
    • Parameters

      • x: number
      • y: number

      Returns void

    • Parameters

      • x: number
      • y: number

      Returns void

    • putImageData(imagedata: ImageData, dx: number, dy: number): void
    • putImageData(imagedata: ImageData, dx: number, dy: number, dirtyX: number, dirtyY: number, dirtyWidth: number, dirtyHeight: number): void
    • Parameters

      • imagedata: ImageData
      • dx: number
      • dy: number

      Returns void

    • Parameters

      • imagedata: ImageData
      • dx: number
      • dy: number
      • dirtyX: number
      • dirtyY: number
      • dirtyWidth: number
      • dirtyHeight: number

      Returns void

    • quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void
    • quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void
    • Parameters

      • cpx: number
      • cpy: number
      • x: number
      • y: number

      Returns void

    • Parameters

      • cpx: number
      • cpy: number
      • x: number
      • y: number

      Returns void

    • rect(x: number, y: number, w: number, h: number): void
    • rect(x: number, y: number, w: number, h: number): void
    • Parameters

      • x: number
      • y: number
      • w: number
      • h: number

      Returns void

    • Parameters

      • x: number
      • y: number
      • w: number
      • h: number

      Returns void

    • resetTransform(): void
    • Returns void

    • restore(): void
    • Returns void

    • rotate(angle: number): void
    • Parameters

      • angle: number

      Returns void

    • save(): void
    • Returns void

    • scale(x: number, y: number): void
    • Parameters

      • x: number
      • y: number

      Returns void

    • setLineDash(segments: number[]): void
    • Parameters

      • segments: number[]

      Returns void

    • setTransform(a: number, b: number, c: number, d: number, e: number, f: number): void
    • setTransform(transform?: DOMMatrix2DInit): void
    • Parameters

      • a: number
      • b: number
      • c: number
      • d: number
      • e: number
      • f: number

      Returns void

    • Parameters

      • Optional transform: DOMMatrix2DInit

      Returns void

    • stroke(): void
    • stroke(path: Path2D): void
    • Returns void

    • Parameters

      • path: Path2D

      Returns void

    • strokeRect(x: number, y: number, w: number, h: number): void
    • Parameters

      • x: number
      • y: number
      • w: number
      • h: number

      Returns void

    • strokeText(text: string, x: number, y: number, maxWidth?: number): void
    • Parameters

      • text: string
      • x: number
      • y: number
      • Optional maxWidth: number

      Returns void

    • transform(a: number, b: number, c: number, d: number, e: number, f: number): void
    • Parameters

      • a: number
      • b: number
      • c: number
      • d: number
      • e: number
      • f: number

      Returns void

    • translate(x: number, y: number): void
    • Parameters

      • x: number
      • y: number

      Returns void

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/PersonResult.html b/typedoc/interfaces/PersonResult.html index 966e01d3..a4301597 100644 --- a/typedoc/interfaces/PersonResult.html +++ b/typedoc/interfaces/PersonResult.html @@ -17,4 +17,4 @@

    left and right hand results that belong to this person

    Type declaration

    id: number

    person id

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/Result.html b/typedoc/interfaces/Result.html index 5c7b3c28..a3262fc5 100644 --- a/typedoc/interfaces/Result.html +++ b/typedoc/interfaces/Result.html @@ -21,4 +21,4 @@

    getter property that returns unified persons object

    timestamp: number

    timestamp of detection representing the milliseconds elapsed since the UNIX epoch

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/interfaces/SegmentationConfig.html b/typedoc/interfaces/SegmentationConfig.html index 9064195f..21b7548c 100644 --- a/typedoc/interfaces/SegmentationConfig.html +++ b/typedoc/interfaces/SegmentationConfig.html @@ -16,4 +16,4 @@ for two-phase models such as face and hand caching applies to bounding boxes det
    skipTime: number

    how many max milliseconds to go without re-running model if cached results are acceptable for two-phase models such as face and hand caching applies to bounding boxes detection only

    -

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/modules/Tensor.html b/typedoc/modules/Tensor.html index 52302e83..ef316453 100644 --- a/typedoc/modules/Tensor.html +++ b/typedoc/modules/Tensor.html @@ -1 +1 @@ -Tensor | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +Tensor | @vladmandic/human - v2.6.5
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/modules/draw.html b/typedoc/modules/draw.html index b2f42f21..d2327da1 100644 --- a/typedoc/modules/draw.html +++ b/typedoc/modules/draw.html @@ -57,4 +57,4 @@

    draw detected objects

    Parameters

    Returns Promise<void>

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Parameters

    Returns Promise<void>

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/modules/match.html b/typedoc/modules/match.html index f6d49e18..2d9b9dc8 100644 --- a/typedoc/modules/match.html +++ b/typedoc/modules/match.html @@ -40,4 +40,4 @@ default is 20 which normalizes results to similarity above 0.5 can be considered default is 0.2...0.8 Returns similarity between two face descriptors normalized to 0..1 range where 0 is no similarity and 1 is perfect similarity -

    Returns number

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Returns number

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/typedoc/modules/models.html b/typedoc/modules/models.html index 8c796568..2682b69e 100644 --- a/typedoc/modules/models.html +++ b/typedoc/modules/models.html @@ -2,4 +2,4 @@

    Class Human as default export

    Index

    Classes

    Functions

    Functions

    • load(instance: Human): Promise<void>
    • Load method preloads all instance.configured models on-demand

      -

      Parameters

      Returns Promise<void>

    • reset(instance: Human): void
    • validate(instance: Human): Promise<void>

    Legend

    • Constructor
    • Property
    • Method
    • Property
    • Method

    Settings

    Theme

    \ No newline at end of file +

    Parameters

    Returns Promise<void>

    • reset(instance: Human): void
    • validate(instance: Human): Promise<void>

    Legend

    • Constructor
    • Property
    • Method
    • Property

    Settings

    Theme

    \ No newline at end of file diff --git a/types/human.d.ts b/types/human.d.ts index 24a05faa..16b4ccaa 100644 --- a/types/human.d.ts +++ b/types/human.d.ts @@ -2,7 +2,7 @@ declare function all(inCanvas: AnyCanvas, result: Result, drawOptions?: Partial): Promise<[void, void, void, void, void] | null>; /** Defines all possible canvas types */ -export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas_2; +export declare type AnyCanvas = HTMLCanvasElement | OffscreenCanvas; /** Defines all possible image types */ export declare type AnyImage = HTMLImageElement | typeof Image; @@ -139,13 +139,6 @@ declare function browserHTTPRequest(path: string, loadOptions?: LoadOptions): IO /** draw processed canvas */ declare function canvas(input: AnyCanvas | HTMLImageElement | HTMLVideoElement, output: AnyCanvas): Promise; -declare interface CanvasDrawImage_2 { - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, dx: number, dy: number, dw: number, dh: number): void; - drawImage(image: CanvasImageSource | OffscreenCanvas_2, sx: number, sy: number, sw: number, sh: number, dx: number, dy: number, dw: number, dh: number): void; -} -export { CanvasDrawImage_2 as CanvasDrawImage } - /** * Concatenate a number of ArrayBuffers into one. * @@ -1934,26 +1927,6 @@ export declare interface ObjectResult { export declare type ObjectType = 'person' | 'bicycle' | 'car' | 'motorcycle' | 'airplane' | 'bus' | 'train' | 'truck' | 'boat' | 'traffic light' | 'fire hydrant' | 'stop sign' | 'parking meter' | 'bench' | 'bird' | 'cat' | 'dog' | 'horse' | 'sheep' | 'cow' | 'elephant' | 'bear' | 'zebra' | 'giraffe' | 'backpack' | 'umbrella' | 'handbag' | 'tie' | 'suitcase' | 'frisbee' | 'skis' | 'snowboard' | 'sports ball' | 'kite' | 'baseball bat' | 'baseball glove' | 'skateboard' | 'surfboard' | 'tennis racket' | 'bottle' | 'wine glass' | 'cup' | 'fork' | 'knife' | 'spoon' | 'bowl' | 'banana' | 'apple' | 'sandwich' | 'orange' | 'broccoli' | 'carrot' | 'hot dog' | 'pizza' | 'donut' | 'cake' | 'chair' | 'couch' | 'potted plant' | 'bed' | 'dining table' | 'toilet' | 'tv' | 'laptop' | 'mouse' | 'remote' | 'keyboard' | 'cell phone' | 'microwave' | 'oven' | 'toaster' | 'sink' | 'refrigerator' | 'book' | 'clock' | 'vase' | 'scissors' | 'teddy bear' | 'hair drier' | 'toothbrush'; -declare interface OffscreenCanvas_2 extends EventTarget { - width: number; - height: number; - getContext(contextId: "2d", contextAttributes?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D_2 | null; - getContext(contextId: "bitmaprenderer", contextAttributes?: WebGLContextAttributes): ImageBitmapRenderingContext | null; - getContext(contextId: "webgl", contextAttributes?: WebGLContextAttributes): WebGLRenderingContext | null; - getContext(contextId: "webgl2", contextAttributes?: WebGLContextAttributes): WebGL2RenderingContext | null; - convertToBlob(options?: { - type?: string | undefined; - quality?: number | undefined; - }): Promise; - transferToImageBitmap(): ImageBitmap; -} -export { OffscreenCanvas_2 as OffscreenCanvas } - -declare interface OffscreenCanvasRenderingContext2D_2 extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage_2, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath { - readonly canvas: OffscreenCanvas_2; -} -export { OffscreenCanvasRenderingContext2D_2 as OffscreenCanvasRenderingContext2D } - /** * Callback for the progress of a long-running action such as an HTTP * request for a large binary object.