函数销毁窗口未知(c++ opencv Ubuntu)
我的编译器说: destroyWindow 不是 cv 的元素。 (希望我翻译正确)
我包含了 opencv/highgui.h 并且实际上存在: 销毁窗口以及与其关联的所有跟踪器 CVAPI(void) cvDestroyWindow( const char* 名称 );
我正在使用最新版本的opencv。
my compiler says: destroyWindow isn't an element of cv. (hope i translated it correctly)
i included opencv/highgui.h and actually there exists:
destroy window and all the trackers associated with it
CVAPI(void) cvDestroyWindow( const char* name );
I am using the latest version of opencv.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,此函数存在于命名空间
cv
中,如下所示:并且您应该包括:
这是使用 OpenCV 的 C++ 接口时要添加的适当标头。如果您需要示例,请检查
samples/cpp/ffilldemo.cpp
(可以在 OpenCV 的源代码中找到)。Yes, this function exists within the namespace
cv
as:And you should include:
which is the appropriate header to add when working with the C++ interface of OpenCV. If you need samples, check
samples/cpp/ffilldemo.cpp
(can be found inside OpenCV's source code).