blob: e22654a3ea6484201dd66e9fe074bfb61c0cbda9 [file] [log] [blame]
milind-u92195982022-01-22 20:29:31 -08001namespace y2022.vision;
2
3// Contains the information the EKF wants from blobs from a single image.
4table TargetEstimate {
5 // Horizontal distance from the camera to the center of the upper hub
6 distance:double (id: 0);
7 // Angle from the camera to the target (horizontal angle in rad).
8 // Positive means right of center, negative means left.
9 angle_to_target:double (id: 1);
10
11 // TODO(milind): add confidence and blob stats
12}
milind-uf2f59aa2022-01-23 21:06:12 -080013
14root_type TargetEstimate;