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

[common] (twitch-dset) Add aerial view detection

parent bff5f9c9
No related branches found
No related tags found
No related merge requests found
from pathlib import Path
from skimage import io
from research_common.constants import TWITCH_DSET
from research_common.dataset.twitch.mask_detector import MaskDetector
aerial_view_detector = MaskDetector(
Path(__file__).parent / 'mask_aerial.jpg',
[
(527, 528, 292, 297, 20),
(527, 531, 303, 303, 20),
(532, 537, 286, 287, 20),
(536, 541, 302, 303, 20),
(543, 544, 292, 297, 20),
(535, 535, 292, 297, 20),
]
)
if __name__ == '__main__':
for file_path in sorted((TWITCH_DSET / 'robots-views').glob('*.jpg')):
if aerial_view_detector.is_matching(io.imread(str(file_path))):
print(file_path.name)
common/research_common/dataset/twitch/mask_aerial.jpg

15.4 KiB

from shutil import move
from skimage import io
from tqdm import tqdm
from research_common.constants import TWITCH_DSET
from research_common.dataset.twitch.aerial_view_detector import aerial_view_detector
ROBOTS_VIEWS_DIR = TWITCH_DSET / 'robots-views'
AERIAL_VIEWS_DIR = TWITCH_DSET / 'aerial-views'
AERIAL_VIEWS_DIR.mkdir(parents=True, exist_ok=True)
if __name__ == '__main__':
n = 0
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))):
move(str(file_path), str(AERIAL_VIEWS_DIR / file_path.name))
n += 1
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