Bin-ze / BEVFormer_segmentation_detection

Implemented BEVFormer support for BEV segmentation
Apache License 2.0
88 stars 7 forks source link

About map grid_conf #7

Closed ahyunSeo closed 10 months ago

ahyunSeo commented 10 months ago

Hi,

Thank you for your nice implementation. I was looking for this! I wonder how you get the numbers of map grid_conf. I believe in LSS they used [-50, 50] Did you intentionally set the grid_conf of detection and segmentation different?

Thanks in advance. Ahyun

Bin-ze commented 10 months ago
  1. The segmentation map in LSS is different from this segmentation map, it contains more categories, so there is more supervised information for training
  2. If only the lane lines and road boundaries are divided, then the supervision information is insufficient, so it is necessary to choose a smaller area as much as possible, such as -30, 30, which roughly meets the width of the road, so this choice is more reasonable, compared to -50, at 50, most of the area will be blank
  3. In order to compare with hdmapnet and beverse algorithms, this configuration is selected, but it also supports modifying the configuration file to expand the perception range ask for a star!aoligei
ahyunSeo commented 10 months ago

Thanks a lot!