Aurelien-VB
Results
1
comments of
Aurelien-VB
I think that I found the cause of black areas: the code uses fillConvexPoly. By replacing `cv2.fillConvexPoly(mask, polygon, value)` by `cv2.fillPoly(mask, [polygon], value)` it fixed the issue in my case....