(self, mean, std, inplace=False)
| 385 | """ |
| 386 | |
| 387 | def __init__(self, mean, std, inplace=False): |
| 388 | self.mean = mean |
| 389 | self.std = std |
| 390 | self.inplace = inplace |
| 391 | |
| 392 | def __call__(self, clip): |
| 393 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected