标签: opencv
我运行cv2.fillPoly(color_warp, pts, (0,255, 0))并认识到pts必须是int32时出错。 但是为什么需要int32?
cv2.fillPoly(color_warp, pts, (0,255, 0))
pts
int32
答案 0 :(得分:1)
get()保存图像上的点数组。图像是标量矩阵。它由(X,Y)值指示,可以足够地存储在pts中。
get()