Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮助我处理使用 imshow() 函数创建的窗口的行为吗?我正在替换对旧 cvNamedWindow() 的调用,这需要在您完成后显式销毁和清理一个窗口。另一方面,imshow 似乎不需要清理并在用户按键后关闭窗口。我对此有任何控制权吗?
您可以在 Opencv 2.x 中使用 namedWindow
请参阅此链接:namedWindow
要销毁窗口,您可以使用destroyWindow("windowname");
destroyWindow("windowname");