ispc-lab / LiDAR4D

💫 [CVPR 2024] LiDAR4D: Dynamic Neural Fields for Novel Space-time View LiDAR Synthesis
https://dyfcalid.github.io/LiDAR4D
Apache License 2.0
151 stars 14 forks source link

how to set the pano height and pano width #9

Closed booker-max closed 3 months ago

booker-max commented 3 months ago

对于kitti360数据集,在生成rangeview的过程中,你设置pano height=66, pano width=1030, 想问下这个是怎么得到的,因为我想要用我自己的lidar数据,这两个参数是和什么有关 image

dyfcalid commented 3 months ago

Thank you for your question! The height is associated with the number of LiDAR beams and the width is related to the LiDAR angular resolution. We set the parameter in the figure to keep it consistent with the LiDAR-NeRF, but you can modify it for general applications. For example, for a 32-beam LiDAR with 1024 points per ring, you can set H=32 and W=1024.

booker-max commented 3 months ago

Thank you for your prompt reply