MCPcopy
hub / github.com/yeemachine/kalidokit / ISolveOptions

Interface ISolveOptions

src/Types.ts:4–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import Euler from "./utils/euler";
3import { RIGHT, LEFT } from "./constants";
4export interface ISolveOptions {
5 /**
6 * Runtime for the solver.
7 * @default "mediapipe"
8 * @type {"tfjs" | "mediapipe"}
9 */
10 runtime: "tfjs" | "mediapipe";
11 /**
12 * HTML Video element or selector for the video element.
13 * @type {HTMLElement | string}
14 */
15 video: null | HTMLVideoElement | string;
16 /**
17 * Set Manual Size
18 * @type {{ width: number, height: number }}
19 * @default null
20 */
21 imageSize: null | { width: number; height: number };
22}
23
24export interface IFaceSolveOptions extends ISolveOptions {
25 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected