(self, size)
| 250 | |
| 251 | class PadImage(object): |
| 252 | def __init__(self, size): |
| 253 | self.size = size |
| 254 | self.ignore_index = cfg.DATASET.IGNORE_LABEL |
| 255 | |
| 256 | |
| 257 | def __call__(self, img, mask): |
nothing calls this directly
no outgoing calls
no test coverage detected