Velodyne LiDAR
Resources
Facts to know (VLP-16)
VLP-16 Parameters
// VLP-16 constant parameters
const int N_SCAN = 16;
const int Horizon_SCAN = 1800; // 1800 for 600 RPM (10Hz)
const float ang_res_x = 0.2; // degree, 0.2 for 600 RPM (10Hz)
const float ang_res_y = 2.0; // degree, fixed FoV
const float ang_bottom = 15.0+0.1;
/* Field information of sensor_msgs::PointCloud2 messages from Velodyne LiDAR
fields[] name offset datatype count
0 x 0 7(FLOAT32) 1
1 y 4 7(FLOAT32) 1
2 z 8 7(FLOAT32) 1
3 intensity 16 7(FLOAT32) 1
4 ring 20 4(UINT16) 1
*/Last updated