DeprecationWarning: `np.int0` is a deprecated alias for `np.intp`. (Deprecated NumPy 1.24) box = np.int0(cv2.boxPoints(rect))
时间: 2024-02-25 18:55:27 浏览: 479
解决 warning 显示 The linear_assignment function is deprecated in 0.21 and will be removed from 0.23. Us…
这是一个警告信息,意思是`np.int0`这个别名在 NumPy 1.24 版本中已被弃用,建议使用`np.intp`代替。在这里,`box`的赋值语句使用了`np.int0`将浮点数转换为整数,可以改为使用`np.intp`,如下所示:
```
box = np.intp(cv2.boxPoints(rect))
```
阅读全文