(self, a)
| 649 | return img.convert('L') |
| 650 | |
| 651 | def Threshold_process(self, a): |
| 652 | one = torch.ones_like(a) |
| 653 | return torch.where(a > 0, one, a) |
| 654 | |
| 655 | def __len__(self): |
| 656 | return self.size |
nothing calls this directly
no outgoing calls
no test coverage detected