函数销毁窗口未知(c++ opencv Ubuntu)

发布于 2025-01-08 11:06:22 字数 179 浏览 0 评论 0原文

我的编译器说: 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 技术交流群。

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

发布评论

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

评论(1

那伤。 2025-01-15 11:06:22

是的,此函数存在于命名空间 cv 中,如下所示:

void destroyWindow(const string& winname)

并且您应该包括:

#include "opencv2/highgui/highgui.hpp"

这是使用 OpenCV 的 C++ 接口时要添加的适当标头。如果您需要示例,请检查 samples/cpp/ffilldemo.cpp(可以在 OpenCV 的源代码中找到)。

Yes, this function exists within the namespace cv as:

void destroyWindow(const string& winname)

And you should include:

#include "opencv2/highgui/highgui.hpp"

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).

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