(self, mean_path, std_path, eps=1e-9)
| 107 | """ |
| 108 | |
| 109 | def __init__(self, mean_path, std_path, eps=1e-9): |
| 110 | self.mean = np.load(mean_path) |
| 111 | self.std = np.load(std_path) |
| 112 | self.eps = eps |
| 113 | |
| 114 | def __call__(self, results): |
| 115 | motion = results['motion'] |
nothing calls this directly
no outgoing calls
no test coverage detected