报错:Traceback (most recent call last): File "C:\Users\86135\Desktop\图像拼接11\未命名0.py", line 6, in <module> cv2.setWindowTitle('Face Detection and Attendance System') TypeError: setWindowTitle() missing required argument 'title' (pos 2)怎么办
时间: 2023-06-09 08:05:22 浏览: 147
未命名0.py
这个报错的意思是 setWindowTitle() 函数缺少必要的参数'title',你需要在使用该函数时添加对应的标题参数。可以尝试修改代码,添加一个标题参数作为第二个参数传递给 setWindowTitle() 函数,例如:cv2.setWindowTitle('Face Detection and Attendance System', 'Title')。这样会给窗口添加一个标题 'Title'。
阅读全文