未验证 提交 1c1ccc74 编写于 作者: J JYChen 提交者: GitHub

[Cherry-Pick] Change saved result format (#5704)

* change id to image path when save result of image directory prediction

* fix error info
上级 48582b8e
......@@ -85,8 +85,9 @@ def topdown_unite_predict(detector,
FLAGS.run_benchmark)
if save_res:
save_name = img_file if isinstance(img_file, str) else i
store_res.append([
i, keypoint_res['bbox'],
save_name, keypoint_res['bbox'],
[keypoint_res['keypoint'][0], keypoint_res['keypoint'][1]]
])
else:
......
......@@ -691,7 +691,7 @@ def get_test_images(infer_dir, infer_img):
Get image path list in TEST mode
"""
assert infer_img is not None or infer_dir is not None, \
"--infer_img or --infer_dir should be set"
"--image_file or --image_dir should be set"
assert infer_img is None or os.path.isfile(infer_img), \
"{} is not a file".format(infer_img)
assert infer_dir is None or os.path.isdir(infer_dir), \
......
......@@ -95,8 +95,9 @@ def mot_topdown_unite_predict(mot_detector,
FLAGS.run_benchmark)
if save_res:
save_name = img_file if isinstance(img_file, str) else i
store_res.append([
i, keypoint_res['bbox'],
save_name, keypoint_res['bbox'],
[keypoint_res['keypoint'][0], keypoint_res['keypoint'][1]]
])
if FLAGS.run_benchmark:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册