blob: 075c9c441f2c6fe32ad4a8d743e45216bcfda755 [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}