human/types/object/centernet.d.ts

4 lines
166 B
TypeScript
Raw Normal View History

2021-05-22 19:17:07 +02:00
import { Item } from '../result';
2021-03-17 23:57:00 +01:00
export declare function load(config: any): Promise<any>;
2021-05-22 19:17:07 +02:00
export declare function predict(image: any, config: any): Promise<Item[]>;