2

我在使用 Boost 库时遇到问题,尤其是与 OpenCV 一起使用时的文件系统。显然,这个问题类似于Boost、OpenCV 和 Eigen 库之间的冲突中描述的问题?. 在那种特殊情况下,问题是通过在“使用命名空间”语句之前加上所有“#include”语句来解决的。就我而言,这从一开始就是以这种方式完成的。

我正在使用 OpenCV 2.4.3 和 Boost 1.48(已经尝试过 1.52 有同样的问题)。使用 Eclipse CPP 插件和 MinGW 在 Windows 7(64 位)中进行编程。

尝试构建我的程序时,出现以下错误:

C:\Boost\boost_1_48_0/boost/type_traits/decay.hpp:28:66: error: 'cvflann::<anonymous enum>' is/uses anonymous type
C:\Boost\boost_1_48_0/boost/type_traits/decay.hpp:28:66: error:   trying to instantiate 'template<class T> struct boost::remove_reference'
C:\Boost\boost_1_48_0/boost/type_traits/decay.hpp:38:17: error: 'cvflann::<anonymous       enum>' is/uses anonymous type
C:\Boost\boost_1_48_0/boost/type_traits/decay.hpp:38:17: error:   trying to instantiate    'template<class T> struct boost::remove_reference'

在我的例子中,使用命名空间语句在 include 语句之后:

#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

问候,路易斯

4

1 回答 1

1

我建议您删除该部分:

using namespace std;
using namespace cv;
using namespace boost::filesystem;

并在代码中使用范围运算符::

这是这两种不同模式的示例

于 2013-01-24T16:45:27.823 回答