1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package entity
- type Sensor struct {
- SensorName string `json:"sensor_name"`
- SensorNear float64 `json:"sensor_near"`
- SensorFar float64 `json:"sensor_far"`
- SensorX float64 `json:"sensor_x"`
- SensorY float64 `json:"sensor_y"`
- SensorZ float64 `json:"sensor_z"`
- SensorH float64 `json:"sensor_h"`
- SensorP float64 `json:"sensor_p"`
- SensorR float64 `json:"sensor_r"`
- }
- type SensorParam struct {
- Sensor
- SensorForH float64 `json:"sensor_fovH"`
- SensorForV float64 `json:"sensor_fovV"`
- SensorForHOffset float64 `json:"sensor_fovH_offset"`
- SensorForVOffset float64 `json:"sensor_fovV_offset"`
- }
- type SensorCamera struct {
- Sensor
- SensorForH float64 `json:"sensor_fovH"`
- SensorForV float64 `json:"sensor_fovV"`
- SensorResolution string `json:"sensor_resolution"`
- SensorFrameRate float64 `json:"sensor_frameRate"`
- }
- type SensorOgt struct {
- Sensor
- SensorForHLeft float64 `json:"sensor_fovHLeft"`
- SensorForHRight float64 `json:"sensor_fovHRight"`
- SensorForHTop float64 `json:"sensor_fovVTop"`
- SensorForHBottom float64 `json:"sensor_fovVBottom"`
- SensorFilter string `json:"sensor_filter"`
- SensorDisplay bool `json:"sensor_display"`
- SensorMaxObjects int `json:"sensor_maxObjects"`
- SensorPort int `json:"sensor_port"`
- }
|