// 示例程序 #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); // YOLOV8 sample void Sample_DetectorYOLOV8(int device); // RetinaFace sample void Sample_DetectorRetinaFace(int device); #endif