carla/PythonAPI/docs/sensor_data.yml

239 lines
6.1 KiB
YAML
Raw Normal View History

2019-05-03 18:18:02 +08:00
---
- module_name: carla
doc: >
# - CLASSES ------------------------------
2019-05-03 18:18:02 +08:00
classes:
- class_name: SensorData
2019-05-03 18:18:02 +08:00
# - DESCRIPTION ------------------------
doc: >
Base class for all the objects containing data generated by a sensor.
2019-05-03 18:18:02 +08:00
# - PROPERTIES -------------------------
instance_variables:
- var_name: frame
doc: >
Frame count when the data was generated.
- var_name: timestamp
doc: >
Simulation-time when the data was generated.
- var_name: transform
doc: >
Sensor's transform when the data was generated.
# --------------------------------------
- class_name: ColorConverter
# - DESCRIPTION ------------------------
doc: >
Defines the color converter options.
# - PROPERTIES -------------------------
instance_variables:
- var_name: Raw
doc: >
- var_name: Depth
doc: >
- var_name: LogarithmicDepth
doc: >
- var_name: CityScapesPalette
doc: >
- class_name: Image
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
Defines an image of 32-bit BGRA colors.
# - PROPERTIES -------------------------
instance_variables:
- var_name: width
type: int
doc: >
Image width in pixels.
- var_name: height
type: int
doc: >
Image height in pixels
- var_name: fov
type: float
doc: >
Horizontal field of view of the image in degrees.
- var_name: raw_data
type: bytes
doc: >
# - METHODS ----------------------------
methods:
- def_name: convert
params:
- param_name: color_converter
type: carla.ColorConverter
doc: >
# --------------------------------------
- def_name: save_to_disk
params:
- param_name: path
type: str
- param_name: color_converter
type: carla.ColorConverter
default: Raw
doc: >
# --------------------------------------
- def_name: __len__
doc: >
# --------------------------------------
- def_name: __iter__
doc: >
# --------------------------------------
- def_name: __getitem__
params:
- param_name: pos
type: int
doc: >
# --------------------------------------
- def_name: __setitem__
params:
- param_name: pos
type: int
- param_name: color
type: carla.Color
doc: >
# --------------------------------------
- def_name: __str__
doc: >
# --------------------------------------
- class_name: LidarMeasurement
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
# - PROPERTIES -------------------------
instance_variables:
- var_name: horizontal_angle
type: float
doc: >
- var_name: channels
type: int
doc: >
- var_name: raw_data
type: bytes
2019-05-03 18:18:02 +08:00
doc: >
# - METHODS ----------------------------
methods:
- def_name: get_point_count
params:
- param_name: channel
type: int
2019-05-03 18:18:02 +08:00
doc: >
# --------------------------------------
- def_name: save_to_disk
params:
- param_name: path
type: str
doc: >
# --------------------------------------
- def_name: __len__
doc: >
# --------------------------------------
- def_name: __iter__
doc: >
# --------------------------------------
- def_name: __getitem__
params:
- param_name: pos
type: int
doc: >
# --------------------------------------
- def_name: __setitem__
params:
- param_name: pos
type: int
- param_name: location
type: carla.Location
doc: >
# --------------------------------------
- def_name: __str__
doc: >
# --------------------------------------
- class_name: CollisionEvent
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
Defines a registered collision.
# - PROPERTIES -------------------------
instance_variables:
- var_name: actor
type: carla.Actor
doc: >
Get "self" actor. Actor that measured the collision.
- var_name: other_actor
type: carla.Actor
doc: >
Get the actor to which we collided.
- var_name: normal_impulse
type: carla.Vector3D
doc: >
Normal impulse result of the collision.
- class_name: ObstacleDetectionEvent
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
# - PROPERTIES -------------------------
instance_variables:
- var_name: actor
type: carla.Actor
doc: >
Get "self" actor. Actor that measured the collision.
- var_name: other_actor
type: carla.Actor
doc: >
Get the actor to which we collided.
- var_name: distance
type: float
doc: >
Get obstacle distance.
# - METHODS ----------------------------
methods:
- def_name: __str__
doc: >
# --------------------------------------
- class_name: LaneInvasionEvent
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
# - PROPERTIES -------------------------
instance_variables:
- var_name: actor
type: carla.Actor
doc: >
Get "self" actor. Actor that invaded another lane.
- var_name: crossed_lane_markings
type: list(carla.LaneMarking)
doc: >
List of lane markings that have been crossed.
# - METHODS ----------------------------
methods:
- def_name: __str__
doc: >
# --------------------------------------
- class_name: GnssEvent
2019-06-05 21:05:57 +08:00
parent: carla.SensorData
# - DESCRIPTION ------------------------
doc: >
# - PROPERTIES -------------------------
instance_variables:
- var_name: latitude
type: float
doc: >
- var_name: longitude
type: float
doc: >
- var_name: altitude
type: float
doc: >
# - METHODS ----------------------------
methods:
- def_name: __str__
doc: >
# --------------------------------------
2019-05-03 18:18:02 +08:00
...