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

[common] (dset) Add class to represent a dataset in the VOC format as we use

parent 5357fd02
No related branches found
No related tags found
No related merge requests found
from dataclasses import dataclass
from pathlib import Path
from typing import Iterable
@dataclass
class Dataset:
dataset_path: Path
dataset_name: str
@property
def images_dir_path(self) -> Path:
return self.dataset_path / "image"
@property
def annotations_dir_path(self) -> Path:
return self.dataset_path / "image_annotation"
@property
def image_paths(self) -> Iterable[Path]:
return self.images_dir_path.glob("*.jpg")
@property
def annotation_paths(self) -> Iterable[Path]:
return self.annotations_dir_path.glob("*.xml")
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