mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 19:42:07 +08:00
79ca8c9ec9
old-commit-hash: e94a30bec0
24 lines
334 B
C
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
|