(self)
| 27 | self.draw.ellipse((x-r, y-r, x+r, y+r), color) |
| 28 | |
| 29 | def show(self): |
| 30 | if not DEBUG: |
| 31 | return |
| 32 | |
| 33 | import cv2 |
| 34 | |
| 35 | cv2.imshow(self.title, cv2.cvtColor(np.array(self.img), cv2.COLOR_BGR2RGB)) |
| 36 | cv2.waitKey(1) |
| 37 | |
| 38 | |
| 39 | class RoutePlanner(object): |
no outgoing calls
no test coverage detected