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
Hi, I am referring to lines 499: depth_vec = torch.index_select(img_a_depth_torch, 0, uv_a_vec_flattened)*1.0/DEPTH_IM_SCALE
and 595: depth2_vec = torch.index_select(img_b_depth_torch, 0, uv_b_vec_flattened)*1.0/1000
in file correspondence_finder.py
If you change the depth scale variable DEPTH_IM_SCALE, there will be an incorrect filtering of correspondences
The text was updated successfully, but these errors were encountered:
Hi, I am referring to lines 499:
depth_vec = torch.index_select(img_a_depth_torch, 0, uv_a_vec_flattened)*1.0/DEPTH_IM_SCALE
and 595:
depth2_vec = torch.index_select(img_b_depth_torch, 0, uv_b_vec_flattened)*1.0/1000
in file correspondence_finder.py
If you change the depth scale variable
DEPTH_IM_SCALE
, there will be an incorrect filtering of correspondencesThe text was updated successfully, but these errors were encountered: