From 355fa904888ed546b196ff17e20d75b74c212364 Mon Sep 17 00:00:00 2001 From: Mathieu Beligon <mathieu@feedly.com> Date: Fri, 6 Dec 2019 23:39:49 -0500 Subject: [PATCH] [common] (twitch-dset) add log --- common/research/dataset/twitch/robot_view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/common/research/dataset/twitch/robot_view.py b/common/research/dataset/twitch/robot_view.py index 3988273..25dd33b 100644 --- a/common/research/dataset/twitch/robot_view.py +++ b/common/research/dataset/twitch/robot_view.py @@ -29,6 +29,7 @@ def process_image(path_to_image: Path): if is_image_from_robot_view(path_to_image): res_path = RES_DIR / f'{path_to_image.parent.name}-{path_to_image.name}' move(str(path_to_image), str(res_path)) + print(f'{path_to_image.stem} is a robot view, moving it') else: remove(str(path_to_image)) -- GitLab