-
Notifications
You must be signed in to change notification settings - Fork 67
/
config.toml
79 lines (58 loc) · 1.53 KB
/
config.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
project = "flypose"
path = "/media/beast/lili/flywalk-pipeline-go/test2"
model_folder = "/home/tuthill/lili/flypose-test-Lili-2018-12-10"
nesting = 1
video_extension = 'avi'
[calibration]
# checkerboard / charuco / aruco
board_type = "charuco"
# width and height of grid, in squares
board_size = [6, 6]
# number of bits in the markers, if aruco/charuco
board_marker_bits = 4
# number of markers in dictionary, if aruco/charuco
board_marker_dict_number = 50
# length of marker side
board_marker_length = 3.75 # mm
# If aruco, length of marker separation
# board_marker_separation_length = 1 # mm
# If charuco or checkerboard, square side length
board_square_side_length = 5 # mm
animal_calibration = false
calibration_init = 'calibration_init.toml'
[filter]
enabled = true
medfilt = 13
offset_threshold = 25
score_threshold = 0.8
spline = true
[labeling]
scheme = [
['L1A', 'L1B', 'L1C', 'L1D', 'L1E'],
['L2A', 'L2B', 'L2C', 'L2D', 'L2E'],
['L3A', 'L3B', 'L3C', 'L3D', 'L3E']
]
[triangulation]
cam_regex = '_([A-Z])$'
axes = [
["x", "L1A", "L3A"],
["z", "L1B", "L1A"]
]
reference_point = "L1A"
cam_align = "C"
[angles]
L1_CF = ["L1A", "L1B", "L1C"]
L1_FTi = ["L1B", "L1C", "L1D"]
L1_TiTa = ["L1C", "L1D", "L1E"]
L2_CF = ["L2A", "L2B", "L2C"]
L2_FTi = ["L2B", "L2C", "L2D"]
L2_TiTa = ["L2C", "L2D", "L2E"]
L3_CF = ["L3A", "L3B", "L3C"]
L3_FTi = ["L3B", "L3C", "L3D"]
L3_TiTa = ["L3C", "L3D", "L3E"]
[cameras.A]
offset = [224, 120, 832, 704]
[cameras.B]
offset = [224, 230, 800, 700]
[cameras.C]
offset = [160, 250, 864, 700]