在多边形上提升几何矩阵变换

时间:2017-09-12 20:50:56

标签: c++11 boost boost-geometry

是否有使用Boost Geometry对多边形(笛卡尔坐标)进行矩阵变换的示例?我用简单的std :: vectors定义矩阵。

另外,我只能使用matrix_transformers找到ublas的一个示例,但它对于简单的矩阵转换来说太复杂了。如果这是唯一的方法,我会坚持使用它,但是有其他选项会很棒,广告使用std::vector代替ublas::matrix

1 个答案:

答案 0 :(得分:4)

这是我对可能感兴趣的任何人的解决方案。 Boost几何实际上添加了一个名为matrix_transformer的策略,该策略依赖于Boost的qvm::mat进行矩阵变换。那里没有那么多的例子,所以这里是我的代码:

#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>

using namespace boost::geometry::strategy::transform;

typedef boost::geometry::model::d2::point_xy<double> point_2f;
typedef boost::geometry::model::polygon<point_2f> polygon_2f;

int main() {
    polygon_2f pol;
    boost::geometry::read_wkt("POLYGON((10 10,10 27,24 22,22 10,10 10))", pol);

    polygon_2f polTrans;

    // Set the rotation angle (in radians)
    double angleDeg = 45;
    double angleRad = angleDeg * 3.14159 / 180.0;

    vector<vector<double> > mat = {{cos(angleRad), sin(angleRad), 0}, {-sin(angleRad), cos(angleRad), 0}, {0, 0, 1}};

    // Create the matrix_trasformer for a simple rotation matrix
    matrix_transformer<double, 2, 2> rotation(mat[0][0], mat[0][1], mat[0][2], mat[1][0], mat[1][1], mat[1][2], mat[2][0], mat[2][1], mat[2][2]);

    // Apply the matrix_transformer
    boost::geometry::transform(pol, polTrans, rotation);

    // Create svg file to show results
    std::ofstream svg("transformationExample.svg");
    boost::geometry::svg_mapper<point_2f> mapper(svg, 400, 400);

    mapper.add(pol);
    mapper.map(pol, "fill-opacity:0.5;fill:rgb(153,204,0);stroke:rgb(153,204,0);stroke-width:2");

    mapper.add(polTrans);
    mapper.map(polTrans, "fill-opacity:0.5;fill:rgb(153,204,255);stroke:rgb(153,204,255);stroke-width:2");

    return 0;
}

这是我的结果,绿色多边形是原始多边形,蓝色多边形被转换(请记住旋转是关于原点):

enter image description here