我在使用Boost库时遇到了问题,尤其是与OpenCV一起使用时的文件系统。显然,这个问题类似于Boost,OpenCV和Eigen库之间的冲突中描述的问题。在这种特殊情况下,通过在"using namespace"语句前面加上所有"#include"语句来解决该问题。就我而言,这从一开始就是这样完成的。
我正在使用 OpenCV 2.4.3 和 Boost 1.48(已经尝试过 1.52 有相同的问题)。编程是在Windows 7(64位)中使用Eclipse CPP插件和MinGW完成的。
尝试构建程序时,出现以下错误:
C:Boostboost_1_48_0/boost/type_traits/decay.hpp:28:66: error: 'cvflann::<anonymous enum>' is/uses anonymous type
C:Boostboost_1_48_0/boost/type_traits/decay.hpp:28:66: error: trying to instantiate 'template<class T> struct boost::remove_reference'
C:Boostboost_1_48_0/boost/type_traits/decay.hpp:38:17: error: 'cvflann::<anonymous enum>' is/uses anonymous type
C:Boostboost_1_48_0/boost/type_traits/decay.hpp:38:17: error: trying to instantiate 'template<class T> struct boost::remove_reference'
在我的例子中,using 命名空间语句在包含语句之后:
#include <opencv2/opencv.hpp>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <vector>
#include <boost/filesystem.hpp>
#include <boost/multi_index_container.hpp>
using namespace std;
using namespace cv;
using namespace boost::filesystem;
任何关于如何解决这个问题的想法将不胜感激:D:D:D
问候路易斯
我建议你删除该部分:
using namespace std;
using namespace cv;
using namespace boost::filesystem;
并在代码中使用范围运算符::
。
以下是这两种不同模式的示例。