We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 671ef4f commit 56a8d91Copy full SHA for 56a8d91
luxonis_ml/data/parsers/classification_directory_parser.py
@@ -65,7 +65,7 @@ def from_split(self, class_dir: Path) -> ParserOutput:
65
66
def generator() -> DatasetIterator:
67
for class_name in class_names:
68
- for img_path in (class_dir / class_name).iterdir():
+ for img_path in self._list_images(class_dir / class_name):
69
yield {
70
"file": str(img_path.absolute().resolve()),
71
"annotation": {"class": class_name},
0 commit comments