human/types/object/nanodet.d.ts

7 lines
209 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* NanoDet object detection module
*/
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[]>;