设置OpenCV的编译器路径

发布于 2024-12-09 17:39:12 字数 78 浏览 0 评论 0 原文

我一直在尝试运行一些使用 cv.h 库的示例 c 程序,但发生的情况是编译抱怨找不到文件。所以我猜我需要一些如何设置编译器的路径。我该怎么做?

I have been trying to run some sample c programs that uses the cv.h library, but what happened was that the compile complains the file could not be found. So I am guessing I need to some how set the compiler's path. How do I do that?

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

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

发布评论

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

评论(2

花伊自在美 2024-12-16 17:39:12

在 Linux 上,我使用 pkg-config 来帮助我完成该任务:

g++ program.cpp -o program `pkg-config --cflags --libs opencv`

On linux, I use pkg-config to assist me on that task:

g++ program.cpp -o program `pkg-config --cflags --libs opencv`
比忠 2024-12-16 17:39:12

使用gcc,您需要添加 -I/path/to/the/folder/where/cv.h/is/。您可能还需要 -L/path/to/the/folder/where/libopencv.so/is -lopencv。

With gcc, you need to add -I/path/to/the/folder/where/cv.h/is/. You'll probably also need the -L/path/to/the/folder/where/libopencv.so/is -lopencv.

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