human/types/image/image.d.ts

9 lines
228 B
TypeScript

/**
* Image Processing module used by Human
*/
import { Tensor } from '../tfjs/types';
export declare function process(input: any, config: any): {
tensor: Tensor | null;
canvas: OffscreenCanvas | HTMLCanvasElement;
};