TinyYolov2Options.d.ts 448 B

123456789101112131415161718
  1. export declare enum TinyYolov2SizeType {
  2. XS = 224,
  3. SM = 320,
  4. MD = 416,
  5. LG = 608
  6. }
  7. export interface ITinyYolov2Options {
  8. inputSize?: number;
  9. scoreThreshold?: number;
  10. }
  11. export declare class TinyYolov2Options {
  12. protected _name: string;
  13. private _inputSize;
  14. private _scoreThreshold;
  15. constructor({ inputSize, scoreThreshold }?: ITinyYolov2Options);
  16. get inputSize(): number;
  17. get scoreThreshold(): number;
  18. }