(self, skeletons, mean_pose)
| 3 | |
| 4 | class MotionPreprocessor: |
| 5 | def __init__(self, skeletons, mean_pose): |
| 6 | self.skeletons = np.array(skeletons) |
| 7 | self.mean_pose = np.array(mean_pose).reshape(-1, 3) |
| 8 | self.filtering_message = "PASS" |
| 9 | |
| 10 | def get(self): |
| 11 | assert (self.skeletons is not None) |
nothing calls this directly
no outgoing calls
no test coverage detected