Skip to content

Commit 2954173

Browse files
author
Shiye Shizhi
committed
add scan point section
1 parent 8d5ba56 commit 2954173

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

doc/3_sensor_models/3_2_lidar.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,13 @@ draw_pos is used for visualizing the position of the sensor in the simulation wo
112112
self.calculate_global_pos(state)
113113
pos_plot, = axes.plot(self.global_x_m, self.global_y_m, marker='.', color='b')
114114
elems.append(pos_plot)
115-
```
115+
```
116+
117+
### 3.2.2 Scan point
118+
ScanPoint class is implemented to represent a scan point in a point cloud from LiDAR. [XYArray class](/doc/2_vehicle_model/2_vehicle_model.md) is imported in the class for representing a x-y vector of the position of the scan point. The scan point object has the following data.
119+
120+
* Distance from the LiDAR to the scan point[m]
121+
* Horizontal angle from the LiDAR to the scan point[rad]
122+
* X-Y position array of the scan point[m]
123+
* Trasformed x coordinate of the scan point on a specific coordinate system
124+
* Trasformed y coordinate of the scan point on a specific coordinate system

0 commit comments

Comments
 (0)