YOLO-V3 图片检测函数流程解读 draw_detection_v3()

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34806812/article/details/84030459

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中:

扫描二维码关注公众号,回复: 4543565 查看本文章

image.c中的draw_detections_v3函数解读:

 

猜你喜欢

转载自blog.csdn.net/qq_34806812/article/details/84030459