(self, img)
| 139 | self._init(locals()) |
| 140 | |
| 141 | def apply_image(self, img): |
| 142 | return img[self.y0:self.y0 + self.h, self.x0:self.x0 + self.w] |
| 143 | |
| 144 | def apply_coords(self, coords): |
| 145 | coords[:, 0] -= self.x0 |
no outgoing calls
no test coverage detected