Skip to content

Commit 175de9f

Browse files
committed
added marker info
1 parent a251cdc commit 175de9f

1 file changed

Lines changed: 30 additions & 1 deletion

File tree

docking_control/src/marker_detection.py

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,28 @@ def __init__(self):
3232
relative to the marker, and then computes the ROV's pose in the map frame.
3333
"""
3434
# --- Parameters ---
35-
self.desired_markers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
35+
self.desired_markers = [
36+
0,
37+
1,
38+
2,
39+
3,
40+
4,
41+
5,
42+
6,
43+
7,
44+
8,
45+
9,
46+
10,
47+
11,
48+
12,
49+
13,
50+
14,
51+
15,
52+
16,
53+
17,
54+
18,
55+
19,
56+
]
3657
self.marker_size = {
3758
0: 0.10,
3859
1: 0.10,
@@ -46,6 +67,14 @@ def __init__(self):
4667
9: 0.10,
4768
10: 0.10,
4869
11: 0.10,
70+
12: 0.20,
71+
13: 0.20,
72+
14: 0.15,
73+
15: 0.15,
74+
16: 0.075,
75+
17: 0.075,
76+
18: 0.05,
77+
19: 0.05,
4978
}
5079
self.filter_len = 20
5180

0 commit comments

Comments
 (0)