(self, mean_path, std_path, eps=1e-9, keys=['motion'])
| 111 | """ |
| 112 | |
| 113 | def __init__(self, mean_path, std_path, eps=1e-9, keys=['motion']): |
| 114 | self.mean = np.load(mean_path) |
| 115 | self.std = np.load(std_path) |
| 116 | self.eps = eps |
| 117 | self.keys = keys |
| 118 | |
| 119 | def __call__(self, results): |
| 120 | for k in self.keys: |
nothing calls this directly
no outgoing calls
no test coverage detected