-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.py
16 lines (13 loc) · 881 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# ============================== Config ========================================
PARAMS = dict(
imageFormat = 'JPG', # Specify Image format [JPG / JPEG / PNG ], Default will be taken as JPG
sourceImageDirectory = './Images', # Source Directory where all images for annotation are kept
annotationDirectory = './Annotation', # Export Directory where annotations will be stored
classNames = '0 1 2' # Class Names spererated with spaces
)
YOLO = dict(
imageFormat = 'JPG', # Specify Image format [JPG / JPEG / PNG ], Default will be taken as JPG
sourceDirectory = '001', # Directory from which you want to convert annotations
outputDirectory = './Output' # Directory where Yolo annotation output will be saved
)
# ==============================================================================