mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 21:56:36 +00:00
66987f4d95
convert from bbox oriented and pascal xml fixes
10 lines
353 B
Python
10 lines
353 B
Python
import os
|
|
from dto.annotationClass import AnnotationClass
|
|
|
|
current_dataset_dir = os.path.join('datasets', 'zombobase-current')
|
|
current_images_dir = os.path.join(current_dataset_dir, 'images')
|
|
current_labels_dir = os.path.join(current_dataset_dir, 'labels')
|
|
annotation_classes = AnnotationClass.read_json()
|
|
prefix = 'zombobase-'
|
|
date_format = '%Y-%m-%d'
|