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.
我有个问题。这是错误:
架构 x86_64“cvloadimage”的未定义符号,引用自:main.o 中的_main
我该如何解决?
该函数名为cvLoadImage()。请记住:C是一种区分大小写的编程语言。
cvLoadImage()
此功能在libopencv_highgui.dylib中实现,您最好将您的应用程序与它链接起来。确保您的 OpenCV 库也是x86_64,否则链接将不起作用。要检查他们的架构,请执行以他们命名的命令行工具file。
x86_64
file
-arch i386 -m 32如果您使用 gcc,您可以通过指定强制将应用程序的构建为 32 位。
-arch i386 -m 32