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
x
28
28
1
# Import necessary libraries
2
import cv2
3
import numpy as np
4
5
# Read an image
6
img = np.zeros((500,500))
7
8
# Define an array of endpoints of triangle
9
points = np.array([[[160, 130], [350, 130], [250, 300]],[[160, 30], [50, 30], [80, 130],[100, 130]]],dtype=object)
10
11
# Use fillPoly() function and give input as
12
# image, end points,color of polygon
13
# Here color of polygon will blue
14
for i in range(len(points)):
15
cv2.fillPoly(img, pts=[points[i]], color=(255, 0, 0))
16
#cv2.fillPoly(img, pts=[points[1]], color=(255, 0, 0))
17
18
19
# Displaying the image
20
cv2.imshow("Triangle", img)
21
22
# wait for the user to press any key to
23
# exit window
24
cv2.waitKey(0)
25
26
# Closing all open windows
27
cv2.destroyAllWindows()
28
However, the output gives me an error. Please find it below.
JavaScript
1
21
21
1
/var/folders/hh/phtw2ldx7gj88krjgwdbz9680000gn/T/ipykernel_1755/1373141779.py:9: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray.
2
points = np.array([[[160, 130], [350, 130], [250, 300]],[[160, 30], [50, 30], [80, 130],[100, 130]]])
3
---------------------------------------------------------------------------
4
error Traceback (most recent call last)
5
Input In [35], in <cell line: 14>()
6
11 # Use fillPoly() function and give input as
7
12 # image, end points,color of polygon
8
13 # Here color of polygon will blue
9
14 for i in range(len(points)):
10
---> 15 cv2.fillPoly(img, pts=[points[i]], color=(255, 0, 0))
11
16 #cv2.fillPoly(img, pts=[points[1]], color=(255, 0, 0))
12
17
13
18
14
19 # Displaying the image
15
20 cv2.imshow("Triangle", img)
16
17
error: OpenCV(4.6.0) :-1: error: (-5:Bad argument) in function 'fillPoly'
18
> Overload resolution failed:
19
> - Can't parse 'pts'. Sequence item with index 0 has a wrong type
20
> - Can't parse 'pts'. Sequence item with index 0 has a wrong type
21
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
- Your image needs to have 3 channels (
np.zeros((500, 500, 3))
) instead of 1. - Your coordinates need to be
np.int32
.
JavaScript
1
24
24
1
import cv2
2
import numpy as np
3
4
img = np.zeros((500, 500, 3))
5
6
# Define an array of points.
7
points = [
8
[[160, 130], [350, 130], [250, 300]],
9
[[160, 30], [50, 30], [80, 130], [100, 130]],
10
]
11
12
for poly in points:
13
cv2.fillPoly(img, np.array([poly], dtype=np.int32), (255, 0, 0))
14
15
# Displaying the image
16
cv2.imshow("Triangle", img)
17
18
# wait for the user to press any key to
19
# exit window
20
cv2.waitKey(0)
21
22
# Closing all open windows
23
cv2.destroyAllWindows()
24