blob: 444244881e92f64fe65dd223a62148abaaa5073b [file] [log] [blame]
namespace y2023.vision;
// Stores image xy pixel coordinates of apriltag corners
struct Point {
x:double (id: 0);
y:double (id: 1);
}
// Corner locations for each apriltag
table AprilCorners {
id:uint64 (id: 0);
// Will always have 4 values, one for each corner
points: [Point] (id: 1);
}
// List of positions of all apriltags detected in current frame
table AprilDebug {
corners: [AprilCorners] (id: 0);
}
root_type AprilDebug;