(self, a)
| 315 | return img.convert('L') |
| 316 | |
| 317 | def Threshold_process(self, a): |
| 318 | one = torch.ones_like(a) |
| 319 | return torch.where(a > 0, one, a) |
| 320 | |
| 321 | def __len__(self): |
| 322 | return self.size |
nothing calls this directly
no outgoing calls
no test coverage detected