1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package entity
- type PjisuvParam struct {
-
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- VelocityZOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
- PositionXOfCicvLocation float64
- PositionYOfCicvLocation float64
-
- ObjDicOfTpperception map[uint32][]float32
- ObjTypeDicOfTpperception map[uint32]uint8
- ObjSpeedDicOfTpperception map[uint32]float64
-
- NumCountPjiControlCommandOfPjControlPub int
- EgoSteeringCmdOfPjControlPub []float64
- EgoThrottleCmdOfPjControlPub []float64
-
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- StrgAngleRealValueOfDataRead float64
-
- AutomodeOfPjVehicleFdbPub int16
-
- LastCurvaturesOfCicvAmrTrajectory []float64
- }
- type KinglongParam struct {
-
- VelocityXOfCicvLocation float64
- VelocityYOfCicvLocation float64
- YawOfCicvLocation float64
- AngularVelocityZOfCicvLocation float64
-
- ObjDicOfTpperception map[uint32][]float32
- ObjTypeDicOfTpperception map[uint32]uint8
- ObjSpeedDicOfTpperception map[uint32]float64
-
- NumCountJinlongControlCommandOfPjControlPub int
- EgoSteeringCmdOfJinlongControlPub []float64
- EgoThrottleCmdOfJinlongControlPub []float64
- EgoBrakeCmdOfJinlongControlPub []float64
-
- NumCountDataReadOfDataRead int
- EgoSteeringRealOfDataRead []float64
- EgoThrottleRealOfDataRead []float64
- EgoBrakeRealOfDataRead []float64
- }
|