MCPcopy Create free account
hub / github.com/ActiveVisionLab/DFNet / process_poses_rotmat

Function process_poses_rotmat

dataset_loaders/seven_scenes.py:61–68  ·  view source on GitHub ↗

processes the 1x12 raw pose from dataset by aligning and then normalizing produce logq :param poses_in: N x 12 :return: processed poses N x 12

(poses_in, mean_t, std_t, align_R, align_t, align_s)

Source from the content-addressed store, hash-verified

59import transforms3d.quaternions as txq # Warning: outdated package
60
61def process_poses_rotmat(poses_in, mean_t, std_t, align_R, align_t, align_s):
62 """
63 processes the 1x12 raw pose from dataset by aligning and then normalizing
64 produce logq
65 :param poses_in: N x 12
66 :return: processed poses N x 12
67 """
68 return poses_in
69
70def process_poses_q(poses_in, mean_t, std_t, align_R, align_t, align_s):
71 """

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected