natanielruiz
2017-10-30 1faf4e73a4f29de73c02c8a7aca2040c23bc4de6
a word
1个文件已修改
10 ■■■■ 已修改文件
code/test_on_video_dlib.py 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
code/test_on_video_dlib.py
@@ -112,11 +112,11 @@
        for idx, det in enumerate(dets):
            # Get x_min, y_min, x_max, y_max, conf
            x_min = d.rect.left()
            y_min = d.rect.top()
            x_max = d.rect.right()
            y_max = d.rect.bottom()
            conf = d.confidence
            x_min = det.rect.left()
            y_min = det.rect.top()
            x_max = det.rect.right()
            y_max = det.rect.bottom()
            conf = det.confidence
            print x_min, y_min, x_max, y_max, conf
            if conf > 0.95: