qq_26292601 2015-07-20 01:20 采纳率: 0%
浏览 1988

boost C++library 如何将需要的坐标全部加入到polygon内

 #include <iostream>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/box.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/assign/list_of.hpp>
#include <string>
namespace bg = boost::geometry;

int main()
{
      std::string a = "(0, 0)(0, 3)(3, 3)(0, 0)";
    typedef bg::model::d2::point_xy<double> point;
    typedef bg::model::box<point> box;
    typedef bg::model::polygon<point> polygon;

//    // box
//    {
//        const box x(point(0, 0), point(3, 3));
//
//        const double result = bg::area(x);
//        std::cout << result << std::endl;
//    }
    // polygon

        polygon x;
        bg::exterior_ring(x) = boost::assign::list_of<point>a;

        const double result = bg::area(x);
        std::cout << result << std::endl;

}
  • 写回答

1条回答

  • oyljerry 2015-07-21 10:26
    关注
    include <iostream>
    #include <vector>
    #include <boost/assign/std/vector.hpp>
    #include <boost/geometry.hpp>
    #include <boost/geometry/algorithms/area.hpp>
    #include <boost/geometry/algorithms/assign.hpp>
    #include <boost/geometry/geometries/point_xy.hpp>
    #include <boost/geometry/geometries/polygon.hpp>
    #include <boost/geometry/io/dsv/write.hpp>
    
    int main()
    {
        using namespace boost::assign;
        typedef boost::geometry::model::d2::point_xy<double> point_xy;
    
        // Create points to represent a 5x5 closed polygon.
        std::vector<point_xy> points;
        points +=
          point_xy(0,0),
          point_xy(0,5),
          point_xy(5,5),
          point_xy(5,0),
          point_xy(0,0)
          ;
    
        // Create a polygon object and assign the points to it.
        boost::geometry::model::polygon<point_xy> polygon;  
        boost::geometry::assign_points(polygon, points);
    
        std::cout << "Polygon " << boost::geometry::dsv(polygon) << 
          " has an area of " << boost::geometry::area(polygon) << std::endl;
    }
    
    
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序