1. 程式人生 > >YOLO-V3 圖片檢測函式流程解讀 draw_detection_v3()

YOLO-V3 圖片檢測函式流程解讀 draw_detection_v3()

YOLO-V2的執行函式路徑為:yolo.c中的test_yolo()  -->  image.c中的draw_detections() 

 

YOLO-V3的執行函式路徑為:detector.c中的test_detector()  --> image.c中的draw_detections_v3()

detector.c中的命令傳入介面:

box.h中的結構體定義:

image.c中的get_actual_detections方法:

classes變數在layer.h的結構體layer中:

image.c中的draw_detections_v3函式解讀: