Files
StarPilot/selfdrive/common/modeldata.h
T
Vehicle Researcher 79ca8c9ec9 openpilot release
old-commit-hash: e94a30bec0
2016-11-29 18:34:21 -08:00

24 lines
334 B
C

#ifndef MODELDATA_H
#define MODELDATA_H
typedef struct PathData {
float points[50];
float prob;
float std;
} PathData;
typedef struct LeadData {
float dist;
float prob;
float std;
} LeadData;
typedef struct ModelData {
PathData path;
PathData left_lane;
PathData right_lane;
LeadData lead;
} ModelData;
#endif