本文整理汇总了Python中utils.timer.Timer.clear方法的典型用法代码示例。如果您正苦于以下问题:Python Timer.clear方法的具体用法?Python Timer.clear怎么用?Python Timer.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utils.timer.Timer
的用法示例。
在下文中一共展示了Timer.clear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: float
# 需要导入模块: from utils.timer import Timer [as 别名]
# 或者: from utils.timer.Timer import clear [as 别名]
# print bbox_pred.shape, iou_pred.shape, prob_pred.shape
bboxes, scores, cls_inds = yolo_utils.postprocess(
bbox_pred, iou_pred, prob_pred, image.shape, cfg, thresh)
im2show = yolo_utils.draw_detection(image, bboxes, scores, cls_inds, cfg)
if im2show.shape[0] > 1100:
im2show = cv2.resize(im2show,
(int(1000. *
float(im2show.shape[1]) / im2show.shape[0]),
1000))
cv2.imshow('test', im2show)
total_time = t_total.toc()
# wait_time = max(int(60 - total_time * 1000), 1)
cv2.waitKey(0)
if i % 1 == 0:
format_str = 'frame: %d, ' \
'(detection: %.1f Hz, %.1f ms) ' \
'(total: %.1f Hz, %.1f ms)'
print((format_str % (
i,
1. / det_time, det_time * 1000,
1. / total_time, total_time * 1000)))
t_total.clear()
t_det.clear()