|
1 | 1 | # Nebula point cloud types
|
2 | 2 |
|
3 |
| -Nebula supports three point cloud output types. |
| 3 | +Nebula currently supports the below point cloud output types. |
4 | 4 | However, it can easily be extended to support other custom point cloud types.
|
5 | 5 |
|
6 | 6 | These definitions can be found in the `nebula_common/include/point_types.hpp`.
|
7 | 7 |
|
8 | 8 | ## PointXYZIR
|
9 | 9 |
|
10 |
| -| Field | Type | Units | Description | |
11 |
| -| ------------- | ------- | ----- | -------------------------------------------------------------------- | |
12 |
| -| `x` | `float` | `m` | Contains the abscissa member of the point in cartesian coordinates. | |
13 |
| -| `y` | `float` | `m` | Contains the ordinate member of the point in cartesian coordinates. | |
14 |
| -| `z` | `float` | `m` | Contains the applicate member of the point in cartesian coordinates. | |
15 |
| -| `intensity` | `uint8` | | Contains the laser energy return value as reported by the sensor. | |
16 |
| -| `return type` | `uint8` | | Contains the lase return type according to the sensor configuration. | |
17 |
| - |
18 |
| -## PointXYZICAETR |
19 |
| - |
20 |
| -| Field | Type | Units | Description | |
21 |
| -| ------------- | ------- | ----- | -------------------------------------------------------------------- | |
22 |
| -| `x` | `float` | `m` | Contains the abscissa member of the point in cartesian coordinates. | |
23 |
| -| `y` | `float` | `m` | Contains the ordinate member of the point in cartesian coordinates. | |
24 |
| -| `z` | `float` | `m` | Contains the applicate member of the point in cartesian coordinates. | |
25 |
| -| `intensity` | `uint8` | | Contains the laser energy return value as reported by the sensor. | |
26 |
| -| `channel` | `uint8` | | Contains the laser channel id. | |
27 |
| -| `azimuth` | `float` | `rad` | Contains the azimuth of the current point. | |
28 |
| -| `elevation` | `float` | `rad` | Contains the elevation of the current point. | |
29 |
| -| `timestamp` | `float` | `ns` | Contains the relative time to the triggered scan time. | |
30 |
| -| `return type` | `uint8` | | Contains the lase return type according to the sensor configuration. | |
| 10 | +| Field | Type | Units | Description | |
| 11 | +| ------------- | ------- | ----- | --------------------------------------------------------------------------- | |
| 12 | +| `x` | `float` | `m` | The point's cartesian x coordinate. | |
| 13 | +| `y` | `float` | `m` | The point's cartesian y coordinate. | |
| 14 | +| `z` | `float` | `m` | The point's cartesian z coordinate. | |
| 15 | +| padding | 4 bytes | | | |
| 16 | +| `intensity` | `uint8` | | The intensity of the return as reported by the sensor. | |
| 17 | +| `return type` | `uint8` | | Whether the point was the first, strongest, last, etc. of multiple returns. | |
31 | 18 |
|
32 | 19 | ## PointXYZICATR
|
33 | 20 |
|
34 |
| -| Field | Type | Units | Description | |
35 |
| -| ------------- | ------- | --------- | -------------------------------------------------------------------- | |
36 |
| -| `x` | `float` | `m` | Contains the abscissa member of the point in cartesian coordinates. | |
37 |
| -| `y` | `float` | `m` | Contains the ordinate member of the point in cartesian coordinates. | |
38 |
| -| `z` | `float` | `m` | Contains the applicate member of the point in cartesian coordinates. | |
39 |
| -| `intensity` | `uint8` | | Contains the laser energy return value as reported by the sensor. | |
40 |
| -| `channel` | `uint8` | | Contains the laser channel id. | |
41 |
| -| `azimuth` | `float` | `degrees` | Contains the azimuth of the current point. | |
42 |
| -| `timestamp` | `float` | `ns` | Contains the relative time to the triggered scan time. | |
43 |
| -| `return type` | `uint8` | | Contains the lase return type according to the sensor configuration. | |
| 21 | +| Field | Type | Units | Description | |
| 22 | +| ------------- | ------- | --------- | --------------------------------------------------------------------------- | |
| 23 | +| `x` | `float` | `m` | The point's cartesian x coordinate. | |
| 24 | +| `y` | `float` | `m` | The point's cartesian y coordinate. | |
| 25 | +| `z` | `float` | `m` | The point's cartesian z coordinate. | |
| 26 | +| padding | 4 bytes | | | |
| 27 | +| `intensity` | `uint8` | | The intensity of the return as reported by the sensor. | |
| 28 | +| `channel` | `uint8` | | The ID of the laser channel that produced the point. | |
| 29 | +| `azimuth` | `float` | `degrees` | azimuth in polar coordinates. | |
| 30 | +| `timestamp` | `float` | `ns` | The time the point was detected relative to the pointcloud timestamp. | |
| 31 | +| `return type` | `uint8` | | Whether the point was the first, strongest, last, etc. of multiple returns. | |
44 | 32 |
|
45 | 33 | ## PointXYZIRADT
|
46 | 34 |
|
47 |
| -| Field | Type | Units | Description | |
48 |
| -| ------------- | ------- | --------- | -------------------------------------------------------------------------- | |
49 |
| -| `x` | `float` | `m` | Contains the abscissa member of the point in cartesian coordinates. | |
50 |
| -| `y` | `float` | `m` | Contains the ordinate member of the point in cartesian coordinates. | |
51 |
| -| `z` | `float` | `m` | Contains the applicate member of the point in cartesian coordinates. | |
52 |
| -| `intensity` | `uint8` | | Contains the laser energy return value as reported by the sensor. | |
53 |
| -| `return type` | `uint8` | | Contains the lase return type according to the sensor configuration. | |
54 |
| -| `azimuth` | `float` | `degrees` | Contains the azimuth of the current point. | |
55 |
| -| `distance` | `float` | `m` | Contains the distance from the sensor origin to this echo on the XY plane. | |
56 |
| -| `timestamp` | `float` | `ns` | Contains the relative time to the triggered scan time. | |
| 35 | +| Field | Type | Units | Description | |
| 36 | +| ------------- | ------- | --------- | --------------------------------------------------------------------------- | |
| 37 | +| `x` | `float` | `m` | The point's cartesian x coordinate. | |
| 38 | +| `y` | `float` | `m` | The point's cartesian y coordinate. | |
| 39 | +| `z` | `float` | `m` | The point's cartesian z coordinate. | |
| 40 | +| padding | 4 bytes | | | |
| 41 | +| `intensity` | `uint8` | | The intensity of the return as reported by the sensor. | |
| 42 | +| `return type` | `uint8` | | Whether the point was the first, strongest, last, etc. of multiple returns. | |
| 43 | +| `azimuth` | `float` | `degrees` | The point's azimuth in polar coordinates. | |
| 44 | +| `distance` | `float` | `m` | The point's distance from the sensor origin. | |
| 45 | +| `timestamp` | `float` | `ns` | The time the point was detected relative to the pointcloud timestamp. | |
| 46 | + |
| 47 | +## NebulaPoint = PointXYZIRCAEDT |
| 48 | + |
| 49 | +| Field | Type | Units | Description | |
| 50 | +| ------------- | -------- | ----- | --------------------------------------------------------------------------- | |
| 51 | +| `x` | `float` | `m` | The point's cartesian x coordinate. | |
| 52 | +| `y` | `float` | `m` | The point's cartesian y coordinate. | |
| 53 | +| `z` | `float` | `m` | The point's cartesian z coordinate. | |
| 54 | +| `intensity` | `uint8` | | The intensity of the return as reported by the sensor. | |
| 55 | +| `return type` | `uint8` | | Whether the point was the first, strongest, last, etc. of multiple returns. | |
| 56 | +| `channel` | `uint16` | | The ID of the laser channel that produced the point. | |
| 57 | +| `azimuth` | `float` | `rad` | The point's azimuth in polar coordinates. | |
| 58 | +| `elevation` | `float` | `rad` | The point's elevation in polar coordinates. | |
| 59 | +| `distance` | `float` | `m` | The point's distance from the sensor origin. | |
| 60 | +| `timestamp` | `float` | `ns` | The time the point was detected relative to the pointcloud timestamp. | |
0 commit comments