(img, pts)
| 361 | trans = WarpAffineTransform(mat, (130, 130)) |
| 362 | |
| 363 | def draw_points(img, pts): |
| 364 | for p in pts: |
| 365 | try: |
| 366 | img[int(p[1]), int(p[0])] = 0 |
| 367 | except IndexError: |
| 368 | pass |
| 369 | |
| 370 | image = cv2.imread('cat.jpg') |
| 371 | image = cv2.resize(image, shape) |
no outgoing calls
no test coverage detected
searching dependent graphs…