-
Notifications
You must be signed in to change notification settings - Fork 45
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
Cam parameters #14
Comments
These are calibration parameters (gravity and camera intrinsics) associated with the images of the KITTI dataset. To fine-tune with your own images, you need the ground truth 3-DoF pose, gravity direction, and camera intrinsics of each image. You may infer infer the gravity and intrinsics with a deep network, like PerspectiveFields as we do in the demo, but you still need the GT 3-DoF poses. If there is interest, I could provide a simplified dataloader to make it easier to fine-tune with custom data - but this won't happen before September. |
Thank you for your illustration! |
I also have a question about the KITTI dataset. In train_files.txt (and test files), the contents are like: |
These are initial errors in (x, y, angle) defined by Shi et al.. We use them only for test and validation to ensure consistent results. At training time, they are randomized for each example. Parsed here: OrienterNet/maploc/data/kitti/utils.py Line 30 in 213aff4
(x, y) error: OrienterNet/maploc/data/dataset.py Lines 105 to 108 in 213aff4
Angle error: OrienterNet/maploc/data/dataset.py Lines 173 to 174 in 213aff4
|
Thank you so much! Yes they are shifts. |
OrienterNet/maploc/data/dataset.py Lines 99 to 111 in 213aff4
At training time we randomly sample an offset from the ground truth. For evaluation, depending on the datasets, we proceed similarly or, if available, initialize the GPS. |
Hi, thanks for your sharing! I`m trying to fine tune the model, I want to ask how to produce the parameters in calib_cam_to_cam.txt, calib_imu_to_velo.txt, calib_velo_to_cam.txt. Will it make the fine tune ineffective if I use these parameters of KITTI dataset provided directly?
The text was updated successfully, but these errors were encountered: