ybarancan / STSU

Official code for "Structured Bird’s-Eye-View Traffic Scene Understanding from Onboard Images" (ICCV 2021)
Apache License 2.0
203 stars 23 forks source link

How can you get the numerical value of the x_limit and y_limit in your code? #5

Closed liuzhidemaomao closed 2 years ago

ybarancan commented 2 years ago

It is used for BEV position encoding and it is set in src/detr/position_encoding.py init function. y_limit is the max depth of the region of interest (50 meters in our paper) and we set x_limit heuristically to be larger than half x length of ROI (which is also 50 meters). So we set it to 40. Any value above 25 in our case would work fine.