Skip to content

Commit ef23375

Browse files
committed
matrix_to_axis_angle correction near pi
1 parent 7a3c0cb commit ef23375

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pytorch3d/transforms/rotation_conversions.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -542,9 +542,7 @@ def matrix_to_axis_angle(matrix: torch.Tensor, fast: bool = False) -> torch.Tens
542542
zeros = torch.zeros(3, dtype=matrix.dtype, device=matrix.device)
543543
omegas = torch.where(torch.isclose(angles, torch.zeros_like(angles)), zeros, omegas)
544544

545-
near_pi = torch.isclose(((traces - 1) / 2).abs(), torch.ones_like(traces)).squeeze(
546-
-1
547-
)
545+
near_pi = torch.isclose(angles, torch.full_like(angles, torch.pi)).squeeze(-1)
548546

549547
axis_angles = torch.empty_like(omegas)
550548
axis_angles[~near_pi] = (

0 commit comments

Comments
 (0)