行人检测0-09:LFFD-源码无死角解析(4)-预测代码解析
以下链接是个人关于LFFD(行人检测)所有见解,如有错误欢迎大家指出,我会第一时间纠正。有兴趣的朋友可以加微信:a944284742相互讨论技术。若是帮助到了你什么,一定要记得点赞!因为这是对我最大的鼓励。 行人检测0-00:LFFD-史上最新无死角详细解读:https://blog.csdn.net/weixin_43013761/article/details/102592374 代码注解 在很全面的博客,就已经运行了pedestrian_detection/accuracy_evaluation/predict.py程序,但是没有对他进行解析,现在我们就来分析一下吧(如果注释没有看懂,到末尾看总结提示): # coding: utf-8 import sys import os import numpy import cv2 import sys sys . path . append ( '../' ) # empty data batch class for dynamical properties class DataBatch : pass def NMS ( boxes , overlap_threshold ) : ''' :param boxes: numpy nx5, n is the number of boxes, 0:4->x1, y1, x2, y2,