-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsettings.ini
49 lines (44 loc) · 2.07 KB
/
settings.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[Streaming]
RESOLUTION = 960, 540
FRAMERATE = 30
#put in the path to your outputfolder
OUTPUT_DIRECTORY = C:/Output
#if you have connected multiple cameras (USB), you will need to select the number OpenCV has given them.
#Default is "0", which takes the first available camera.
CAMERA_SOURCE = 0
#you can use "camera", "ipwebcam" or "video" to select your input source
STREAMING_SOURCE = camera
[Pose Estimation]
#possible origins are: SLEAP, DLC, DLC-LIVE,MADLC, DEEPPOSEKIT
MODEL_ORIGIN = MODEL_ORIGIN
#takes path to model or models (in case of SLEAP topdown, bottom up) in style "string" or "string , string", without ""
# E.g.: MODEL_PATH = D:\SLEAP\models\baseline_model.centroids , D:\SLEAP\models\baseline_model.topdown
MODEL_PATH = PATH_TO_MODEL
MODEL_NAME = NAME_OF_MODEL
; only used in DLC-LIVE and DeepPoseKit for now; if left empty or to short, auto-naming will be enabled in style bp1, bp2 ...
ALL_BODYPARTS = bp1, bp2, bp3, bp4
[Experiment]
#Available parameters are "CUSTOM" and "BASE"
EXP_ORIGIN = CUSTOM
#Name of the experiment config in /experiments/configs or name of the custom experiment in /experiments/custom/experiments.py
EXP_NAME = ExampleExperiment
#if you want the experiment to be recorded as a raw video set this to "True".
RECORD_EXP = True
[Classification]
PATH_TO_CLASSIFIER = PATH_TO_CLASSIFIER
#time window used for feature extraction (currently only works with 15)
TIME_WINDOW = 15
#number of parallel classifiers to run, this is dependent on your performance time. You need at least 1 more classifier then your average classification time.
POOL_SIZE = 1
#threshold to accept a classification probability as positive detection (SIMBA + )
THRESHOLD = 0.9
# class/category of identified behavior to use as trigger (only used for B-SOID)
TRIGGER = 0
#feature extraction currently works with millimeter not px, so be sure to enter the factor (as in simba).
PIXPERMM = 1
[Video]
#Full path to video that you want to use as input. Needs "STREAMING_SOURCE" set to "video"!
VIDEO_SOURCE = PATH_TO_VIDEO
[IPWEBCAM]
#Standard Port is 5555 if you followed the SmoothStream setup
PORT = 5555