Francois

Results 1 comments of Francois

Hi @ericspod correcting code snippet: ``` offset = (torch.as_tensor(fixed_image.shape[-3:]).to(fixed_keypoints.device) - 1) / 2 offset = offset[None][None] ddf_keypoints = torch.flip((fixed_keypoints - offset) / offset, (-1,)) ``` I added the -1 to...