-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get BEV camera config data? #9
Comments
The BEV camera config represents the 3D rotation and translation of the BEV camera used to capture the ground truth BEV in the FB-SSEM dataset. Generally, there is no BEV camera in the real world, so there won't be any BEV camera config for your case. Note that testing the F2BEV model does not require a BEV camera config; the |
Thanks for your reply. The process will be: def read_config_for_bevposrot(self,configdir,filename):
with open(os.path.join(configdir, filename)) as f:
lines = f.readlines()
# will read bev cam config and report error here
bpos = [float(lines[5].split(',')[1]),float(lines[5].split(',')[2]),float(lines[5].split(',')[3])]
brot = [float(lines[5].split(',')[4]),float(lines[5].split(',')[5]),float(lines[5].split(',')[6])]
return [bpos,brot] error :
|
LIke this in the dataset ( xxxx.txt ):
BEVCamera, 7.467841, 40.13262, 2.768845, 90, 0.9908196, 0
The text was updated successfully, but these errors were encountered: