We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Each module is fully self enclosed:
/src/
load
predict
Define module that implements load and predict async methods:
export async function load(config: Config | any) { ... }
modelPath
tf.GraphModel
export async function predict(image: Tensor, config: Config, idx: number, count: number) { ... }
skipFrames
idx
count
in human.ts:
human.ts
module.load()
in config.ts:
config.ts
in result.ts:
result.ts
in models.ts:
models.ts
if model works on full image, execute from human.ts if model works on face image, execute from face.ts
face.ts
module.predict()
emotion/emotion.ts
object/centernet.ts