1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package entity
- type PjisuvParam struct {
-
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
-
- ObjDicOfTpperception map[uint32][]float32
-
- NumCountPjiControlCommandOfPjControlPub int
- EgoSteeringCmdOfPjControlPub []float64
- EgoThrottleCmdOfPjControlPub []float64
-
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- StrgAngleRealValueOfDataRead float64
- }
- type KinglongParam struct {
-
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
-
- ObjDicOfTpperception map[uint32][]float32
-
- NumCountJinlongControlCommandOfPjControlPub int
- EgoSteeringCmdOfJinlongControlPub []float64
- EgoThrottleCmdOfJinlongControlPub []float64
- EgoBrakeCmdOfJinlongControlPub []float64
-
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- EgoBrakeRealOfDataRead []float64
- }
|