Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruilong Li committed Sep 29, 2023
1 parent 73e7d63 commit b663bf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion diff_rast/_torch_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ def project_cov3d_ewa(
W = viewmat[..., :3, :3] # (..., 3, 3)
p = viewmat[..., :3, 3] # (..., 3)
t = torch.matmul(W, mean3d[..., None])[..., 0] + p # (..., 3)
raise NotImplementedError("Need to incorporate changes from this commit: 85e76e1c8b8e102145922f561800a74262ceb196!")
raise NotImplementedError(
"Need to incorporate changes from this commit: 85e76e1c8b8e102145922f561800a74262ceb196!"
)
rz = 1.0 / t[..., 2] # (...,)
rz2 = rz**2 # (...,)
J = torch.stack(
Expand Down

0 comments on commit b663bf9

Please sign in to comment.