(self, crop_size, stride_rate, ignore_label)
| 201 | |
| 202 | class SlidingCrop(object): |
| 203 | def __init__(self, crop_size, stride_rate, ignore_label): |
| 204 | self.crop_size = crop_size |
| 205 | self.stride_rate = stride_rate |
| 206 | self.ignore_label = ignore_label |
| 207 | |
| 208 | def _pad(self, img, mask): |
| 209 | h, w = img.shape[: 2] |
nothing calls this directly
no outgoing calls
no test coverage detected