diff --git a/src/python/pose_format/pose.py b/src/python/pose_format/pose.py index ca358f7..6c26751 100644 --- a/src/python/pose_format/pose.py +++ b/src/python/pose_format/pose.py @@ -10,7 +10,6 @@ PoseNormalizationInfo) from pose_format.utils.fast_math import distance_batch from pose_format.utils.reader import BufferReader -from pose_format.utils.generic import pose_normalization_info class Pose: @@ -105,6 +104,7 @@ def normalize(self, info: PoseNormalizationInfo|None=None, scale_factor: float = The normalized Pose object. """ if info is None: + from pose_format.utils.generic import pose_normalization_info info = pose_normalization_info(self.header) transposed = self.body.points_perspective()