(self, size, interpolation=Image.BILINEAR)
| 124 | |
| 125 | class ResizeHeight(object): |
| 126 | def __init__(self, size, interpolation=Image.BILINEAR): |
| 127 | self.target_h = size |
| 128 | self.interpolation = interpolation |
| 129 | |
| 130 | def __call__(self, img): |
| 131 | w, h = img.size |
nothing calls this directly
no outgoing calls
no test coverage detected