-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from collections import Counter | ||
from pathlib import Path | ||
|
||
from PIL import Image | ||
from rich.console import Console | ||
|
||
INPUT_DIR = Path("/opt/ml/input") | ||
AIHUB_DIR = INPUT_DIR / "aihub" | ||
CAR_DIR = INPUT_DIR / "car" | ||
ANN_DIR = CAR_DIR / "annotations" | ||
IMG_DIR = CAR_DIR / "images" | ||
|
||
|
||
if __name__ == "__main__": | ||
console = Console() | ||
sizes = [] | ||
for _path in IMG_DIR.glob("*.jpg"): | ||
img = Image.open(_path) | ||
sizes.append((img.width, img.height)) | ||
|
||
console.print(Counter(sizes)) | ||
# Counter({(1920, 1080): 13313}) |