-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Implementation from PyTorch Geometric:
class RandomAxisRotation:
r"""Rotates node positions around a specific axis by a randomly sampled
factor within a given interval (functional name: :obj:`random_rotate`).
Args:
degrees (tuple or float): Rotation interval from which the rotation
angle is sampled. If :obj:`degrees` is a number instead of a
tuple, the interval is given by :math:`[-\mathrm{degrees},
\mathrm{degrees}]`.
axis (int, optional): The rotation axis. (default: :obj:`0`)
"""
def __init__(
self,
degrees: Union[Tuple[float, float], float],
axis: int = 0,
) -> None:
if isinstance(degrees, (int, float)):
degrees = (-abs(degrees), abs(degrees))
assert isinstance(degrees, (tuple, list)) and len(degrees) == 2
self.degrees = degrees
self.axis = axis
def __call__(self, data):
degree = math.pi * random.uniform(*self.degrees) / 180.0
sin, cos = math.sin(degree), math.cos(degree)
if self.axis == 0:
matrix = [[1, 0, 0], [0, cos, sin], [0, -sin, cos]]
elif self.axis == 1:
matrix = [[cos, 0, -sin], [0, 1, 0], [sin, 0, cos]]
else:
matrix = [[cos, sin, 0], [-sin, cos, 0], [0, 0, 1]]
return transform_pcd(pcd=data, tfm=torch.tensor(matrix))Metadata
Metadata
Assignees
Labels
No labels