c++ - Boost.Geometry Correct() 失败

标签 c++ boost boost-geometry

我正在尝试在项目中使用 Boost.Geometry,但遇到了一个奇怪的错误。当我运行此代码时,它按预期工作:

#include <iostream>

#include <boost/geometry/algorithms/append.hpp>
#include <boost/geometry/algorithms/correct.hpp>
#include <boost/geometry/core/cs.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>

#include <boost/geometry/geometries/adapted/c_array.hpp>
BOOST_GEOMETRY_REGISTER_C_ARRAY_CS(boost::geometry::cs::cartesian);

#include <boost/geometry/geometries/adapted/boost_tuple.hpp>
BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS(boost::geometry::cs::cartesian)

int main() {
    typedef boost::geometry::model::d2::point_xy<double> point_t;
    typedef boost::geometry::model::polygon<point_t> polygon_t;

    double points_a[][2] = {{0.0, 0.0},
                            {1.0, 0.0},
                            {1.0, 1.0},
                            {0.0, 1.0}};
    polygon_t poly_a;
    boost::geometry::append(poly_a, points_a);

//    boost::geometry::correct(poly_a);

    for(point_t p : boost::geometry::exterior_ring(poly_a)) {
        std::cout << "(" << boost::geometry::get<0>(p) << ", " << boost::geometry::get<1>(p) << ")" << std::endl;
    }
}

当我取消注释 Correct() 行时,我认为在 append 行中出现错误,这对我来说没有意义。这是我的编译器给我的:

/opt/clion-2016.2.1/bin/cmake/bin/cmake --build /home/my_user_name/.CLion2016.2/system/cmake/generated/my_project_name-82c1f56b/82c1f56b/Debug --target my_project_name -- -j 8
Scanning dependencies of target my_project_name
[  9%] Building CXX object CMakeFiles/my_project_name.dir/utils/PolygonTest.cpp.o
In file included from /usr/local/boost_1_61_0/boost/concept_check.hpp:27:0,
                 from /usr/local/boost_1_61_0/boost/range/concepts.hpp:19,
                 from /usr/local/boost_1_61_0/boost/range/size_type.hpp:20,
                 from /usr/local/boost_1_61_0/boost/range/size.hpp:21,
                 from /usr/local/boost_1_61_0/boost/range/functions.hpp:20,
                 from /usr/local/boost_1_61_0/boost/range.hpp:18,
                 from /usr/local/boost_1_61_0/boost/geometry/algorithms/append.hpp:24,
                 from /home/my_user_name/ClionProjects/my_project_name/utils/PolygonTest.cpp:7:
/usr/local/boost_1_61_0/boost/geometry/strategies/area.hpp: In instantiation of ‘struct boost::geometry::strategy::area::services::default_strategy<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >’:
/usr/local/boost_1_61_0/boost/geometry/strategies/default_area_result.hpp:42:17:   required from ‘struct boost::geometry::default_area_result<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> > >’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:177:57:   required from ‘struct boost::geometry::detail::correct::correct_polygon<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> > >’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:245:8:   required from ‘struct boost::geometry::dispatch::correct<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >, boost::geometry::polygon_tag>’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:287:43:   required from ‘static void boost::geometry::resolve_variant::correct<Geometry>::apply(Geometry&) [with Geometry = boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >]’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:328:46:   required from ‘void boost::geometry::correct(Geometry&) [with Geometry = boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >]’
/home/my_user_name/ClionProjects/my_project_name/utils/PolygonTest.cpp:30:36:   required from here
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:429:42: error: no matching function for call to ‘assertion_failed(mpl_::failed************ (boost::geometry::strategy::area::services::default_strategy<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >::NOT_IMPLEMENTED_FOR_THIS_POINT_TYPE::************)(mpl_::assert_::types<boost::geometry::model::d2::point_xy<double>, mpl_::na, mpl_::na, mpl_::na>))’
         boost::mpl::assertion_failed<(c)>( BOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
                                          ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:60:58: note: in definition of macro ‘BOOST_MPL_AUX_ASSERT_CONSTANT’
 #   define BOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) enum { expr }
                                                          ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:436:1: note: in expansion of macro ‘BOOST_MPL_ASSERT_MSG_IMPL’
 BOOST_MPL_ASSERT_MSG_IMPL( BOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
 ^
/usr/local/boost_1_61_0/boost/geometry/strategies/area.hpp:37:5: note: in expansion of macro ‘BOOST_MPL_ASSERT_MSG’
     BOOST_MPL_ASSERT_MSG
     ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:83:5: [01;36mnote: candidate: template<bool C> int mpl_::assertion_failed(typename mpl_::assert<C>::type)
 int assertion_failed( typename assert<C>::type );
     ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:83:5: note:   template argument deduction/substitution failed:
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:429:92: note:   cannot convert ‘boost::geometry::strategy::area::services::default_strategy<Tag, PointOfSegment>::NOT_IMPLEMENTED_FOR_THIS_POINT_TYPE41::assert_arg<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >()’ (type ‘mpl_::failed************ (boost::geometry::strategy::area::services::default_strategy<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >::NOT_IMPLEMENTED_FOR_THIS_POINT_TYPE::************)(mpl_::assert_::types<boost::geometry::model::d2::point_xy<double>, mpl_::na, mpl_::na, mpl_::na>)’) to type ‘mpl_::assert<false>::type {aka mpl_::assert<false>}’
         boost::mpl::assertion_failed<(c)>( BOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
                                                                                            ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:60:58: note: in definition of macro ‘BOOST_MPL_AUX_ASSERT_CONSTANT’
 #   define BOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) enum { expr }
                                                          ^
/usr/local/boost_1_61_0/boost/mpl/assert.hpp:436:1: note: in expansion of macro ‘BOOST_MPL_ASSERT_MSG_IMPL’
 BOOST_MPL_ASSERT_MSG_IMPL( BOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
 ^
/usr/local/boost_1_61_0/boost/geometry/strategies/area.hpp:37:5: note: in expansion of macro ‘BOOST_MPL_ASSERT_MSG’
     BOOST_MPL_ASSERT_MSG
     ^
In file included from /usr/local/boost_1_61_0/boost/geometry/algorithms/area.hpp:42:0,
                 from /usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:43,
                 from /home/my_user_name/ClionProjects/my_project_name/utils/PolygonTest.cpp:8:
/usr/local/boost_1_61_0/boost/geometry/strategies/default_area_result.hpp: In instantiation of ‘struct boost::geometry::default_area_result<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> > >’:
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:177:57:   required from ‘struct boost::geometry::detail::correct::correct_polygon<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> > >’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:245:8:   required from ‘struct boost::geometry::dispatch::correct<boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >, boost::geometry::polygon_tag>’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:287:43:   required from ‘static void boost::geometry::resolve_variant::correct<Geometry>::apply(Geometry&) [with Geometry = boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >]’
/usr/local/boost_1_61_0/boost/geometry/algorithms/correct.hpp:328:46:   required from ‘void boost::geometry::correct(Geometry&) [with Geometry = boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >]’
/home/my_user_name/ClionProjects/my_project_name/utils/PolygonTest.cpp:30:36:   required from here
/usr/local/boost_1_61_0/boost/geometry/strategies/default_area_result.hpp:42:17: error: no type named ‘type’ in ‘struct boost::geometry::strategy::area::services::default_strategy<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >’
         >::type strategy_type;
                 ^
CMakeFiles/my_project_name.dir/build.make:278: recipe for target 'CMakeFiles/my_project_name.dir/utils/PolygonTest.cpp.o' failed
make[3]: *** [CMakeFiles/my_project_name.dir/utils/PolygonTest.cpp.o] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/my_project_name.dir/all' failed
make[2]: *** [CMakeFiles/my_project_name.dir/all] Error 2
CMakeFiles/Makefile2:79: recipe for target 'CMakeFiles/my_project_name.dir/rule' failed
make[1]: *** [CMakeFiles/my_project_name.dir/rule] Error 2
Makefile:118: recipe for target 'my_project_name' failed
make: *** [my_project_name] Error 2

我正在 Ubuntu 上使用 CLion,如果有帮助的话。

谢谢!

编辑:我刚刚找到解决方案!从下面的评论中,我意识到我必须在 boost/geometry.hpp 中查找为 point_xy 定义区域策略的位置,并且我发现了 boost/geometry/strategies/strategies.hpp ,其中包含它解决了问题。

最佳答案

没有区域策略:

        /usr/local/boost_1_61_0/boost/mpl/assert.hpp:429:42: error: no matching function for call to
     ‘assertion_failed(mpl_::failed************
 (boost::geometry::strategy::area::services::default_strategy<boost::geometry::cartesian_tag, boost::geometry::model::d2::point_xy<double> >::NOT_IMPLEMENTED_FOR_THIS_POINT_TYPE::************)(mpl_::assert_::types<boost::geometry::model::d2::point_xy<double>, mpl_::na, mpl_::na, mpl_::na>))’
             boost::mpl::assertion_failed<(c)>( BOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \

只需添加

#include <boost/geometry.hpp>

而不是明确地包含算法

关于c++ - Boost.Geometry Correct() 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40188034/

相关文章:

c++ - boost 线程 : is it possible to limit the run time of a thread before moving to another thread

c++ - 在 boost::geometry 中获取凸包的交点

c++ - 编译时 C++ 程序中的大量数据

c++ - 如何使用诺基亚 Qt C++ 绘制和导出透明图像?

在结构中声明 vector 时,C++ 不是类型错误

c++ - 如何安装 c++ 库以便我可以使用它?

c++ - 枚举到 char * - 在 boost 时间之前询问了这个无答案的 q‌u‌e‌s‌t‌i‌o‌n

c++ - 如何使用 Boost Graph Library 获取边缘的端口标识符?

c++ - 如何将 boost::geometry::distance 与 opencv cv::Point 一起使用?

c++ - boost 几何/空间查询形状