Skip to content
Advertisement

How to use cv2.fillpoly function properly [closed]

I am trying to use the fillpoly function to fill two polygons at once (with a triangle and a trapezium). Please find the below code.

JavaScript

However, the output gives me an error. Please find it below.

JavaScript

It gives an error due to the different number in coordinates of the polygones (3 and 4 respectively).

Would anyone be able to help me in this regards please.

Thanks & Best Regards

Schroter Michael

Advertisement

Answer

  1. Your image needs to have 3 channels (np.zeros((500, 500, 3))) instead of 1.
  2. Your coordinates need to be np.int32.
JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement