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
in training file, megadepth_warper file, the following is code:
`@torch.no_grad()
def warp_kpts(kpts0, depth0, depth1, T_0to1, K0, K1):
kpts0_long = kpts0.round().long().clip(0, 2000-1)
in training file, megadepth_warper file, the following is code:
`@torch.no_grad()
def warp_kpts(kpts0, depth0, depth1, T_0to1, K0, K1):
kpts0_long = kpts0.round().long().clip(0, 2000-1)
i want to know that what is purpose of depth0[:, 0, :] = 0 and depth0[:, :, 0] = 0 ?
The text was updated successfully, but these errors were encountered: