Sample.h 359 Bytes
Newer Older
lijian6's avatar
lijian6 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 示例程序

#ifndef __SAMPLE_H__
#define __SAMPLE_H__

// SSD sample
void Sample_DetectorSSD(int device);

// YOLOV3 sample
void Sample_DetectorYOLOV3(int device);

// YOLOV5 sample
void Sample_DetectorYOLOV5(int device);

// YOLOV7 sample
void Sample_DetectorYOLOV7(int device);

// RetinaFace sample
void Sample_DetectorRetinaFace(int device);

#endif