(self, a)
| 417 | return img.convert('L') |
| 418 | |
| 419 | def Threshold_process(self, a): |
| 420 | one = torch.ones_like(a) |
| 421 | return torch.where(a > 0, one, a) |
| 422 | |
| 423 | def __len__(self): |
| 424 | return self.size |
nothing calls this directly
no outgoing calls
no test coverage detected