Anannya Uberoi
Results
1
comments of
Anannya Uberoi
Faced the same issue. Try adding the following line `points=points.astype(numpy.int32)` to the `draw_convex_hull` function. `def draw_convex_hull(im, points, color):` `points=points.astype(numpy.int32)` `points = cv2.convexHull(points)`...