blob: 444244881e92f64fe65dd223a62148abaaa5073b [file] [log] [blame]
Yash Chainani728ae222023-02-04 19:48:12 -08001namespace y2023.vision;
2
3// Stores image xy pixel coordinates of apriltag corners
4struct Point {
5 x:double (id: 0);
6 y:double (id: 1);
7}
8
9// Corner locations for each apriltag
10table AprilCorners {
11 id:uint64 (id: 0);
12 // Will always have 4 values, one for each corner
13 points: [Point] (id: 1);
14}
15
16// List of positions of all apriltags detected in current frame
17table AprilDebug {
18 corners: [AprilCorners] (id: 0);
19}
20
21root_type AprilDebug;