类型错误:destroyWindow() 缺少必需参数“winname”; (位置 1)

发布于 2025-01-11 20:43:53 字数 360 浏览 0 评论 0原文

编程运行正确,但之后显示错误:

Traceback (most recent call last):
  File "D:/python programs/unwired learning/face detection/2.py", line 19, in <module>
    cv2.destroyWindow()
TypeError: destroyWindow() missing required argument 'winname' (pos 1)

在此处输入图像描述

the programming is running correctly but after that it show and error which says that:

Traceback (most recent call last):
  File "D:/python programs/unwired learning/face detection/2.py", line 19, in <module>
    cv2.destroyWindow()
TypeError: destroyWindow() missing required argument 'winname' (pos 1)

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄人书 2025-01-18 20:43:53

destroy window(注意单数时态)通过标题参数销毁特定窗口。更改为 cv2.destroyAllWindows()cv2.destroyWindow('hahaha')

destroy window (notice the singular tense) destroys a specific window by title argument. either change to cv2.destroyAllWindows() or cv2.destroyWindow('hahaha')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文