(self, results)
| 117 | self.keys = keys |
| 118 | |
| 119 | def __call__(self, results): |
| 120 | for k in self.keys: |
| 121 | motion = results[k] |
| 122 | motion = (motion - self.mean) / (self.std + self.eps) |
| 123 | results[k] = motion |
| 124 | return results |
nothing calls this directly
no outgoing calls
no test coverage detected