Data Structures | |
| struct | dwParkingSpace |
| Information about a single parking space object or a parking strip. More... | |
| struct | dwParkingSpaceArray |
Macros | |
| #define | DW_MAX_PARKING_BOUNDARY_POINT_COUNT 64 |
| #define | DW_MAX_PARKING_REFERENCE_POINT_COUNT 32 |
| #define | DW_MAX_PARKING_SPACES_COUNT 32 |
| #define | DW_MAX_PARKING_SPACES_TYPES_COUNT 32 |
| struct dwParkingSpace |
| Data Fields | ||
|---|---|---|
| dwConfidence2f | boundaryPointConfidences[DW_MAX_PARKING_BOUNDARY_POINT_COUNT] | Confidence of location of each point expressed in 2D top down view ground plane. |
| uint32_t | boundaryPointCount | Number of points that outline the parking space or no-parking zone location. |
| dwVector3f | boundaryPoints[DW_MAX_PARKING_BOUNDARY_POINT_COUNT] | Exactly boundaryPointCount number of points outlining a polygon in 3D coordinate system of the car rig. |
| uint8_t | boundaryType[DW_MAX_PARKING_BOUNDARY_POINT_COUNT] | Class of each side of the polygon. |
| uint64_t | id | Tracking ID of the parking space object persistent over time. |
| dwParkingReferenceDirectionType | referenceDirectionType | Direction of parking allowed. |
| uint32_t | referencePointCount | Number of reference points that define direction for parking. |
| dwVector3f | referencePoints[DW_MAX_PARKING_REFERENCE_POINT_COUNT] | Coordinates of referencePointCount of 3D points. |
| dwConfidence1f | spaceTypeConfidence[DW_MAX_PARKING_SPACES_TYPES_COUNT] | Array of confidences, one confidence entry per class of the parking space type. |
| dwTime_t | timestamp_us | Global host system timestamp. |
| struct dwParkingSpaceArray |
| Data Fields | ||
|---|---|---|
| dwParkingSpace | parkingSpaces[DW_MAX_PARKING_SPACES_COUNT] | |
| uint32_t | parkingSpacesCount | |
| #define DW_MAX_PARKING_BOUNDARY_POINT_COUNT 64 |
Definition at line 55 of file ParkingSpace.h.
| #define DW_MAX_PARKING_REFERENCE_POINT_COUNT 32 |
Definition at line 56 of file ParkingSpace.h.
| #define DW_MAX_PARKING_SPACES_COUNT 32 |
Definition at line 57 of file ParkingSpace.h.
| #define DW_MAX_PARKING_SPACES_TYPES_COUNT 32 |
Definition at line 58 of file ParkingSpace.h.
Attributes of sides of the polygon representing the parking space object.
Each side may have zero, one or more attributes set using a binary mask pattern.
Definition at line 84 of file ParkingSpace.h.
Direction of parking allowed within a parking space. Mutually exclusive.
Definition at line 94 of file ParkingSpace.h.
| enum dwParkingSpaceType |
Type of parking space object.
Each object can have zero, one, or more types using a binary mask pattern. Each type is either enabled or disabled
Definition at line 62 of file ParkingSpace.h.