(self, img, x, y)
| 33 | self.ips = None |
| 34 | |
| 35 | def getimgs(self, img, x, y): |
| 36 | return img[:, :, int(x)].transpose((1,0,2)[:len(img.shape)-1]).copy(), \ |
| 37 | img[:, int(y), :].copy() |
| 38 | |
| 39 | def mouse_down(self, ips, x, y, btn, **key): |
| 40 | if ips==self.ips1: |
no outgoing calls
no test coverage detected