Skip to content
Snippets Groups Projects
Commit 97b1b493 authored by Mathieu Beligon's avatar Mathieu Beligon
Browse files

[common] (constants) typo add DIR in constant names

parent 0fb7dd79
No related branches found
No related tags found
No related merge requests found
from pathlib import Path from pathlib import Path
DSET_DIR = Path(__file__).parent.parent.parent / "dataset"
DSET_DIR = Path(__file__).parent.parent.parent / 'dataset' TWITCH_DSET_DIR: Path = DSET_DIR / "twitch"
ROCO_DSET_DIR: Path = DSET_DIR / "dji_roco"
TENSORFLOW_RECORDS_DIR: Path = DSET_DIR / "tf_records"
TWITCH_DSET: Path = DSET_DIR / 'twitch' TWITCH_DSET_DIR.mkdir(parents=True, exist_ok=True)
ROCO_DSET: Path = DSET_DIR / 'dji_roco' ROCO_DSET_DIR.mkdir(parents=True, exist_ok=True)
TENSORFLOW_RECORDS_DIR.mkdir(parents=True, exist_ok=True)
...@@ -2,11 +2,11 @@ from pathlib import Path ...@@ -2,11 +2,11 @@ from pathlib import Path
from skimage import io from skimage import io
from research_common.constants import TWITCH_DSET from research_common.constants import TWITCH_DSET_DIR
from research_common.dataset.twitch.mask_detector import MaskDetector from research_common.dataset.twitch.mask_detector import MaskDetector
aerial_view_detector = MaskDetector( aerial_view_detector = MaskDetector(
Path(__file__).parent / 'mask_aerial.jpg', Path(__file__).parent / "mask_aerial.jpg",
[ [
(527, 528, 292, 297, 20), (527, 528, 292, 297, 20),
(527, 531, 303, 303, 20), (527, 531, 303, 303, 20),
...@@ -14,10 +14,10 @@ aerial_view_detector = MaskDetector( ...@@ -14,10 +14,10 @@ aerial_view_detector = MaskDetector(
(536, 541, 302, 303, 20), (536, 541, 302, 303, 20),
(543, 544, 292, 297, 20), (543, 544, 292, 297, 20),
(535, 535, 292, 297, 20), (535, 535, 292, 297, 20),
] ],
) )
if __name__ == '__main__': if __name__ == "__main__":
for file_path in sorted((TWITCH_DSET / 'robots-views').glob('*.jpg')): for file_path in sorted((TWITCH_DSET_DIR / "robots-views").glob("*.jpg")):
if aerial_view_detector.is_matching(io.imread(str(file_path))): if aerial_view_detector.is_matching(io.imread(str(file_path))):
print(file_path.name) print(file_path.name)
...@@ -5,11 +5,11 @@ import ffmpeg ...@@ -5,11 +5,11 @@ import ffmpeg
import numpy as np import numpy as np
from tqdm import tqdm from tqdm import tqdm
from research_common.constants import TWITCH_DSET from research_common.constants import TWITCH_DSET_DIR
from research_common.dataset.twitch.mask_detector import is_image_from_robot_view from research_common.dataset.twitch.mask_detector import is_image_from_robot_view
from research_common.dataset.twitch.video_frame_generator import VideoFrameGenerator from research_common.dataset.twitch.video_frame_generator import VideoFrameGenerator
RES_DIR: Path = TWITCH_DSET / 'robots-views' RES_DIR: Path = TWITCH_DSET_DIR / "robots-views"
RES_DIR.mkdir(parents=True, exist_ok=True) RES_DIR.mkdir(parents=True, exist_ok=True)
...@@ -19,25 +19,28 @@ class RobotsViewExtractor: ...@@ -19,25 +19,28 @@ class RobotsViewExtractor:
def __init__(self, video_name: str): def __init__(self, video_name: str):
self.video_name: str = video_name self.video_name: str = video_name
self.video_path = TWITCH_DSET / 'videos' / f'{video_name}.mp4' self.video_path = TWITCH_DSET_DIR / "videos" / f"{video_name}.mp4"
self.frame_generator: VideoFrameGenerator = VideoFrameGenerator(self.video_path, self.FPS) self.frame_generator: VideoFrameGenerator = VideoFrameGenerator(self.video_path, self.FPS)
self.count = 0
def run(self): def run(self):
for i, frame in tqdm( for i, frame in tqdm(
enumerate(self.frame_generator.generate()), enumerate(self.frame_generator.generate()),
total=self._get_number_of_frames(), total=self._get_number_of_frames(),
desc=f'Extracting robots views from video {self.video_name}.mp4', desc=f"Extracting robots views from video {self.video_name}.mp4",
unit='frames', unit="frames",
ncols=200, ncols=200,
): ):
self._process_frame(frame, i) self._process_frame(frame, i)
print(f"Detected {self.count} robots views")
def _process_frame(self, frame: np.ndarray, frame_number: int): def _process_frame(self, frame: np.ndarray, frame_number: int):
if is_image_from_robot_view(frame): if is_image_from_robot_view(frame):
self._save_frame(frame, frame_number) self._save_frame(frame, frame_number)
self.count += 1
def _save_frame(self, frame: np.ndarray, frame_number: int): def _save_frame(self, frame: np.ndarray, frame_number: int):
cv2.imwrite(f"{RES_DIR}/{self.video_name}-frame-{frame_number + 1:06}.jpg", frame) cv2.imwrite(f"{RES_DIR}/{self.video_name}-frame-{frame_number + 1:06}.jpg", frame)
def _get_number_of_frames(self): def _get_number_of_frames(self):
return int(ffmpeg.probe(str(self.video_path))['format']['duration'].split('.')[0]) * self.FPS return int(ffmpeg.probe(str(self.video_path))["format"]["duration"].split(".")[0]) * self.FPS
...@@ -3,20 +3,20 @@ from shutil import move ...@@ -3,20 +3,20 @@ from shutil import move
from skimage import io from skimage import io
from tqdm import tqdm from tqdm import tqdm
from research_common.constants import TWITCH_DSET from research_common.constants import TWITCH_DSET_DIR
from research_common.dataset.twitch.aerial_view_detector import aerial_view_detector from research_common.dataset.twitch.aerial_view_detector import aerial_view_detector
ROBOTS_VIEWS_DIR = TWITCH_DSET / 'robots-views' ROBOTS_VIEWS_DIR = TWITCH_DSET_DIR / "robots-views"
AERIAL_VIEWS_DIR = TWITCH_DSET / 'aerial-views' AERIAL_VIEWS_DIR = TWITCH_DSET_DIR / "aerial-views"
AERIAL_VIEWS_DIR.mkdir(parents=True, exist_ok=True) AERIAL_VIEWS_DIR.mkdir(parents=True, exist_ok=True)
if __name__ == '__main__': if __name__ == "__main__":
n = 0 n = 0
for file_path in tqdm(list(ROBOTS_VIEWS_DIR.glob('*.jpg')), unit='image', desc='Moving aerial views'): for file_path in tqdm(list(ROBOTS_VIEWS_DIR.glob("*.jpg")), unit="image", desc="Moving aerial views"):
if aerial_view_detector.is_matching(io.imread(str(file_path))): if aerial_view_detector.is_matching(io.imread(str(file_path))):
move(str(file_path), str(AERIAL_VIEWS_DIR / file_path.name)) move(str(file_path), str(AERIAL_VIEWS_DIR / file_path.name))
n += 1 n += 1
print(f'Moved {n} images') print(f"Moved {n} images")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment