diff --git a/common/README.md b/common/README.md index c62882c8ce3a8e17fabb1acc2bceb83c6ea27946..00de247052413a1de3334e35ddd65599dcc1b161 100644 --- a/common/README.md +++ b/common/README.md @@ -65,9 +65,8 @@ You have 2 options to download the videos: #### Procedure to process a video 1. First, go on the [google sheet](https://docs.google.com/spreadsheets/d/1kIrMOjcKJ8hslZoVMx1D0H7QYj9nQLFvzUAQ1U4Le-I/edit#gid=0), and choose a video that nobody already did, and put your name in the 2nd column -2. Download the video with TwitchLeecher, in **720p** +2. Download the video, in **720p** 3. Rename it using the video id on twitch, and place it in [../dataset/twitch/videos](../dataset/twitch/videos) -4. Launch the python script [./research/scripts/monitor_new_twitch_frames.py](./research/scripts/monitor_new_twitch_frames.py) through PyCharm. It will check for new frames in the [raw-frames directory](../dataset/twitch/raw-frames), and move those that are a robot view. -5. Launch the second python script [./research/scripts/split_video.py](./research/scripts/split_video.py), with the video id as parameter (In Pycharm, `Run` > `Edit Configurations...`, then in parameters enter the id). +5. Launch the python script [./research/scripts/extract_robots_views_from_video.py](./research/scripts/extract_robots_views_from_video.py), with the video id as parameter (In Pycharm, `Run` > `Edit Configurations...`, then in parameters enter the id). The frames will appear in the [../dataset/twitch/robots-views](../dataset/twitch/robots-views) folder. diff --git a/common/research/dataset/twitch/robots_views_extractor.py b/common/research/dataset/twitch/robots_views_extractor.py index 3c529ce378560798f7d9efa97eb6b20622f32e27..890b4c777eb8cc053099c7bc65e96e0eacd6f32f 100644 --- a/common/research/dataset/twitch/robots_views_extractor.py +++ b/common/research/dataset/twitch/robots_views_extractor.py @@ -1,9 +1,7 @@ -import sys from pathlib import Path import cv2 import ffmpeg -from pyprind import ProgBar import numpy as np from tqdm import tqdm