Commit c1225909 authored by WenmuZhou's avatar WenmuZhou
Browse files

Fix printing problem when multi-image prediction

parent 4b87314a
...@@ -186,4 +186,4 @@ if __name__ == "__main__": ...@@ -186,4 +186,4 @@ if __name__ == "__main__":
cv2.imwrite(img_path, src_im) cv2.imwrite(img_path, src_im)
logger.info("The visualized image saved in {}".format(img_path)) logger.info("The visualized image saved in {}".format(img_path))
if count > 1: if count > 1:
logger.info("Avg Time:", total_time / (count - 1)) logger.info("Avg Time: {}".format(total_time / (count - 1)))
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment