You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your contribution to the community through your work!
But I have some doubts about the code in config:
HFT/configs/pyva/pyva_swin_kd_simple_fpn_force_nuscenes.py
# scale calibration matrix to account for image downsampling
intrinsics[0] *=800/results['img_shape'][1]
intrinsics[1] *=600/results['img_shape'][0]
Here, the calib (intrinsics) is multiplied by a scaling factor, provided that the image is resized to a fixed size of 800600, not 10241024.
This hardcore caused some misalignment, did I miss something?
Thank you for answering my question.
The text was updated successfully, but these errors were encountered:
In fact, when the resize scale is 1024 * 1024, the camera parameters scaled to incorrect 600 * 800 in the current code will be better, and I don't know why ... Can you give me some clues?
Thank you for your contribution to the community through your work!
But I have some doubts about the code in config:
HFT/configs/pyva/pyva_swin_kd_simple_fpn_force_nuscenes.py
HFT/HFT/configs/pyva/pyva_swin_kd_simple_fpn_force_nuscenes.py
Lines 49 to 50 in c4d0671
These configurations resize the images of nuScenes to 1024 and in the load function:
HFT/HFT/mmseg/datasets/pipelines/loading.py
Lines 202 to 207 in c4d0671
Here, the calib (intrinsics) is multiplied by a scaling factor, provided that the image is resized to a fixed size of 800600, not 10241024.
This hardcore caused some misalignment, did I miss something?
Thank you for answering my question.
The text was updated successfully, but these errors were encountered: