⼀段好玩的python代码--随机⽣成圆for i in range(0,25):
radius = np.random.randint(5,high = 200)#⽣成1个[5,200)的随机数
color = np.random.randint(0,high = 256,size = (3,)).tolist()#⽣成3个[0,256)的随机数
pt = np.random.randint(0,high = 300,size = (2,))#⽣成2个[0,300)的随机数
cv2.circle(canvas,tuple(pt),radius,color,-1)#画圆
cv2.imshow("Canvas",canvas)
cv2.waitKey(0)random python
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论