(self, a)
| 532 | return img.convert('L') |
| 533 | |
| 534 | def Threshold_process(self, a): |
| 535 | one = torch.ones_like(a) |
| 536 | return torch.where(a > 0, one, a) |
| 537 | |
| 538 | def __len__(self): |
| 539 | return self.size |
nothing calls this directly
no outgoing calls
no test coverage detected