()
| 53 | |
| 54 | @staticmethod |
| 55 | def get_timestamps(): |
| 56 | H = 64 |
| 57 | W = 1024 |
| 58 | return (np.floor(np.arange(H * W) / H) / W).reshape(-1, 1) |
| 59 | |
| 60 | def load_gt_poses(self, poses_file: str): |
| 61 | """MuRan has more poses than scans, therefore we need to match 1-1 timestamp with pose""" |
no outgoing calls
no test coverage detected