codeblocks 对‘cv::waitKey(int)’未定义的引用方式
时间:2021-06-02 08:21:10|栏目:C代码|点击: 次
对‘cv::waitKey(int)'未定义的引用
我一直以为是C++11或者g++版本的原因,看到:
http://forum.ubuntu.com.cn/viewtopic.php?f=48&t=377522 提出:
g++ `pkg-config --cflags --libs opencv` lena.cpp -o lena
这样会编译失败,而
g++ lena.cpp `pkg-config --cflags --libs opencv` -o lena
这样就会成功。试了一下果然如此。
栏 目:C代码
下一篇:如何寻找数组中的第二大数
本文标题:codeblocks 对‘cv::waitKey(int)’未定义的引用方式
本文地址:http://www.codeinn.net/misctech/133667.html