参考:https://blog.csdn.net/weixin_42272869/article/details/121143195
cv2.error: OpenCV(4.5.4-dev) error: (-5:Bad argument) in function ‘circle’
问题描述:
使用opencv这个库的方法putText 出现了以下错误
问题处理
原因是因为:这里的参数矩阵x y 要为 int 型 我代码中的x y 为浮点型,所以这边报错
代码使用前强转一下:
下面的x和y可能是小数
需要转换成int
即可解决问题