中文 opencv DeleteObject
时间: 2023-09-17 10:07:49 浏览: 68
opencv中文
在 OpenCV 中删除对象的方法是使用 `cv2.destroyAllWindows()` 函数。它将关闭所有已经打开的窗口。
另外,如果您想关闭特定的窗口,可以使用 `cv2.destroyWindow(window_name)` 函数,其中 `window_name` 是要关闭的窗口的名称。
示例代码:
```python
import cv2
# 打开一个名为 "image" 的窗口
cv2.imshow("image", image)
# 等待用户按下任意键
cv2.waitKey(0)
# 关闭所有窗口
cv2.destroyAllWindows()
# 或者只关闭名为 "image" 的窗口
cv2.destroyWindow("image")
```
阅读全文