为什么boost::geometry::交集不能正确工作

Why boost::geometry::intersection does not work correct?

本文关键字:不能 工作 boost geometry 为什么      更新时间:2023-10-16

我编写了Boost Geometry相交函数的下一个测试函数

typedef boost::geometry::model::polygon<boost::tuple<int, int> > Polygon;
void test_boost_intersection() {
  Polygon green, blue;
  boost::geometry::read_wkt("POLYGON((0 0,0 9,9 9,9 0,0 0))", green);
  boost::geometry::read_wkt("POLYGON((2 2,2 9,9 9,9 2,2 2))", blue);
  std::deque<Polygon> output;
  boost::geometry::intersection(green, blue, output);
  BOOST_FOREACH(Polygon const& p, output)
  {
    std::cout << boost::geometry::dsv(p) << std::endl;
  }
};

我期望输出结果为:

(((2, 2), (2, 9), (9, 9), (9, 2), (2, 2)))

但是我得到了:

((((1, 9), (9, 9), (9, 2), (2, 2), (1, 9))))

我使用Boost 1.54.

如果我改变第一个多边形,相交工作正确。

编辑:当我将多边形类型更改为 时
boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> >

它开始正常工作。所以我不能一直使用先前类型吗?

您需要 correct 输入多边形来满足算法的先决条件:Live On Coliru prints

(((2, 9), (9, 9), (9, 2), (2, 2), (2, 9)))
#include <boost/tuple/tuple.hpp>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/geometries/adapted/boost_tuple.hpp>
#include <boost/foreach.hpp>
typedef boost::geometry::model::polygon<boost::tuple<int, int> > Polygon;
BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS(cs::cartesian)
void test_boost_intersection() {
    Polygon green, blue;
    boost::geometry::read_wkt("POLYGON((0 0,0 9,9 9,9 0,0 0))", green);
    boost::geometry::read_wkt("POLYGON((2 2,2 9,9 9,9 2,2 2))", blue);
    boost::geometry::correct(green);
    boost::geometry::correct(blue);
    std::deque<Polygon> output;
    boost::geometry::intersection(green, blue, output);
    BOOST_FOREACH(Polygon const& p, output)
    {
        std::cout << boost::geometry::dsv(p) << std::endl;
    }
}
int main()
{
    test_boost_intersection();
}