human/types/image/image.d.ts

9 lines
228 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* Image Processing module used by Human
*/
2021-05-23 03:54:18 +02:00
import { Tensor } from '../tfjs/types';
2021-03-17 23:57:00 +01:00
export declare function process(input: any, config: any): {
2021-05-23 03:54:18 +02:00
tensor: Tensor | null;
2021-03-17 23:57:00 +01:00
canvas: OffscreenCanvas | HTMLCanvasElement;
};