For opencv, how to draw a line with float number point given because an error said that integer argument expected, got float?
a. image np. zeros ((1000,1000,3),np.float32) cv2. line(image, (5.2,4.2),(11.7,12.5), (255,0,0),5)



Answer :

Other Questions