-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathConfig.h
12 lines (9 loc) · 968 Bytes
/
Config.h
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#define SCREENSHOT_SAVE_DIR "D:/Projects/CPP/Yolov5LabelMakerForCSGO/Data/images/train/" //where to save screenshots
#define LABEL_SAVE_DIR "D:/Projects/CPP/Yolov5LabelMakerForCSGO/Data/labels/train/" //where to save labels
#define SCREENSHOT_FILENAME_PREFIX "Train_" //Filename prefix
#define SCREENSHOT_FILE_TYPE ".png" //Image file format
#define SCREENSHOT_DELAY 5 //Increase this value if your screenshot has bounding box
extern int imgCnt; //File name begins with SCREENSHOT_FILENAME_PREFIX_imgCnt, if this is 0 then your first filename is SCREENSHOT_FILENAME_PREFIX_0, change this in dllmain
extern float boxHeightModifier; //Currently 1.2 works fine, change this in dllmain if you wanna
extern int timer; //Dont change