- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
尝试从环的底部到顶部裁剪一个环 (50%),但结果并不像我预期的那样有效。
我的解决方案是
using bg_point_type = boost::geometry::model::d2::point_xy<double>;
using bg_polygon_type = boost::geometry::model::ring<bg_point_type>;
//Find the envelope of the region of the object
bg_polygon_type obj_region = //... it is a rectangle
boost::geometry::model::box<bg_point_type> envelope_box;
boost::geometry::envelope(obj_region, envelope_box);
auto const top_y = envelope_box.min_corner().y();
auto const bottom_y = envelope_box.max_corner().y();
auto const left = envelope_box.min_corner().x();
auto const right = envelope_box.max_corner().x();
//with min_corner and max_corner, we can know the top of the ring
auto const line_y = bottom_y - (bottom_y - top_y) * ratio;
//find the intersection of the line and the polygon
boost::geometry::model::linestring<bg_point_type> const line{{left, line_y}, {right, line_y}};
std::vector<bg_point_type> intersect;
boost::geometry::intersection(obj_region, line, intersect);
//remove those points higher than top
bg_polygon_type result = obj_region;
auto it = std::remove_if(std::begin(result ), std::end(result ), [=](auto const &pt)
{
return pt.y() < line_y;
});
result .erase(it, std::end(result ));
//insert the intersect points into the results
std::copy(std::begin(intersect), std::end(intersect), std::back_inserter(result));
boost::geometry::correct(result);
这个解决方案给了我需要的点,但没有给我想要的形状。
点为“0.1,0.1,0.1,0.5,0.5,0.5,0.5,0.1,0.1,0.1”,我有一个这样的环(为简单起见,我选择矩形为例)
裁剪环后,我希望它可以是(有点,0.1,0.5,0.1,0.3,0.5,0.3,0.5,0.5,0.1,0.5)
但它给了我 0.1,0.5,0.5,0.5,0.1,0.3,0.5,0.3,0.1,0.5
问题是,“正确的”多边形不是唯一的,我怎么能得到我想要的结果,如果在这里说的太长/太复杂,我应该搜索什么样的关键字?我试过“裁剪多边形”、“裁剪多边形的一部分”、“从多边形裁剪多边形”等。谢谢
编辑 1:obj_region 是简单的多边形
编辑2:sehe的解题
我将 crop_box 函数更改为从下到上裁剪并期望intersections api 会给我相同的结果,但它会返回一个奇怪的结果。
template <typename G>
bg_box_type crop_box(G const& geom, double ratio) {
bg_box_type env;
bg::envelope(geom, env);
auto const miny = env.min_corner().y();
auto const height = env.max_corner().y() - miny;
env.min_corner().set<1>(env.max_corner().y() - height*ratio);
return env;
}
输入:多边形((100.0 100.0,100.0 200.0,200.0 200.0,200.0 100.0,100.0 100.0))输出:POLYGON((100 200,100 150,200 200,200 150,100 200))--无效正确后输出:POLYGON((100 200,100 150,200 200,200 150,100 200))--无效
完整的源代码
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/geometries/linestring.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/core/cs.hpp>
#include <boost/geometry/arithmetic/arithmetic.hpp>
#include <boost/geometry/algorithms/for_each.hpp>
#include <boost/geometry/algorithms/envelope.hpp>
#include <boost/geometry/algorithms/intersection.hpp>
#include <boost/geometry/io/io.hpp>
#include <iostream>
#include <fstream>
namespace bg = boost::geometry;
using bg_point_type = bg::model::d2::point_xy<double>;
using bg_polygon_type = bg::model::ring<bg_point_type>;
using bg_box_type = bg::model::box<bg_point_type>;
template <typename G>
bg_box_type crop_box(G const& geom, double ratio) {
bg_box_type env;
bg::envelope(geom, env);
auto const miny = env.min_corner().y();
auto const height = env.max_corner().y() - miny;
env.min_corner().set<1>(env.max_corner().y() - height*ratio);
return env;
}
template <typename G>
void diags(std::string name, G& geom) {
std::cout << name << ": " << bg::wkt(geom) << "\n";
std::string reason;
if (!bg::is_valid(geom, reason)) {
std::cout << name << ": " << reason << "\n";
bg::correct(geom);
std::cout << bg::wkt(geom) << "\n";
if (!bg::is_valid(geom, reason)) {
std::cout << name << " corrected: " << reason << "\n";
}
}
}
int main() {
bool const visualize = true;
//Find the envelope of the region of the object
bg_polygon_type obj_region;
bg::read_wkt("POLYGON((100.0 100.0,100.0 200.0,200.0 200.0,200.0 100.0,100.0 100.0))", obj_region);
diags("Input", obj_region);
bg_polygon_type out;
bg::intersection(crop_box(obj_region, 0.5), obj_region, out);
diags("output", out);
std::cout << "Output: " << bg::wkt(out) << "\n";
if (visualize) {
std::ofstream svg("svg.svg");
boost::geometry::svg_mapper<bg_point_type> mapper(svg, 600, 600);
mapper.add(obj_region);
mapper.add(out);
mapper.map(obj_region, "fill-opacity:0.5;fill:rgb(204,153,0);stroke:rgb(204,153,0);stroke-width:2");
mapper.map(out, "fill-opacity:0.5;fill:rgb(153,204,0);stroke:rgb(153,204,0);stroke-width:2");
}
}
最佳答案
您只想将原始 region_obj
与其 envelope_box
的下半部分相交。
相反,通过仅找到交点的顶线,并强行随机删除多边形内的点,您正在创建一个无效的多边形:
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/linestring.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/algorithms/envelope.hpp>
#include <boost/geometry/algorithms/intersection.hpp>
#include <boost/geometry/io/io.hpp>
#include <iostream>
namespace bg = boost::geometry;
using bg_point_type = bg::model::d2::point_xy<double>;
using bg_polygon_type = bg::model::ring<bg_point_type>;
template <typename G>
void diags(std::string name, G& geom) {
std::cout << name << ": " << bg::wkt(geom) << "\n";
std::string reason;
if (!bg::is_valid(geom, reason)) {
std::cout << name << " invalid: " << reason << "\n";
bg::correct(geom);
std::cout << name << " corrected: " << bg::wkt(geom) << "\n";
if (!bg::is_valid(geom, reason)) {
std::cout << name << " invalid: " << reason << "\n";
}
}
}
int main() {
double const ratio = 0.5;
//Find the envelope of the region of the object
bg_polygon_type obj_region;
bg::read_wkt("POLYGON((0.1 0.1,0.1 0.5,0.5 0.5,0.5 0.1,0.1 0.1))", obj_region);
diags("Input", obj_region);
bg::model::box<bg_point_type> envelope_box;
bg::envelope(obj_region, envelope_box);
auto const top_y = envelope_box.min_corner().y();
auto const bottom_y = envelope_box.max_corner().y();
auto const left = envelope_box.min_corner().x();
auto const right = envelope_box.max_corner().x();
//with min_corner and max_corner, we can know the top of the ring
auto const line_y = bottom_y - (bottom_y - top_y) * ratio;
//find the intersection of the line and the polygon
bg::model::linestring<bg_point_type> const line{{left, line_y}, {right, line_y}};
bg::model::multi_point<bg_point_type> intersect;
bg::intersection(obj_region, line, intersect);
std::cout << bg::wkt(intersect) << "\n";
//remove those points higher than top
bg_polygon_type result = obj_region;
auto it = std::remove_if(std::begin(result ), std::end(result ), [=](auto const &pt) { return pt.y() < line_y; });
result.erase(it, std::end(result ));
//insert the intersect points into the results
std::copy(std::begin(intersect), std::end(intersect), std::back_inserter(result));
diags("Result", result);
}
打印
Input: POLYGON((0.1 0.1,0.1 0.5,0.5 0.5,0.5 0.1,0.1 0.1))
MULTIPOINT((0.1 0.3),(0.5 0.3))
Result: POLYGON((0.1 0.5,0.5 0.5,0.1 0.3,0.5 0.3))
Result invalid: Geometry is defined as closed but is open
Result corrected: POLYGON((0.1 0.5,0.5 0.5,0.1 0.3,0.5 0.3,0.1 0.5))
Result invalid: Geometry has invalid self-intersections. A self-intersection point was found at (0.3, 0.4); method: i; operations: u/i; segment IDs {source, multi, ring, segment}: {0, -1, -1, 1}/{0, -1, -1, 3}
只需询问您的意思:
bg_polygon_type obj_region;
bg::read_wkt("POLYGON((0.1 0.1,0.1 0.5,0.5 0.5,0.5 0.1,0.1 0.1))", obj_region);
diags("Input", obj_region); // check validity/attempt correction
bg_polygon_type out;
bg::intersection(crop_box(obj_region, 0.5), obj_region, out);
std::cout << "Output: " << bg::wkt(out) << "\n";
当然,以类似的方式定义 crop_box
(只是到达裁剪包络线,而不是多点):
template <typename G>
bg_box_type crop_box(G const& geom, double ratio) {
bg_box_type env;
bg::envelope(geom, env);
auto miny = env.min_corner().y();
auto height = env.max_corner().y() - miny;
env.max_corner().set<1>(miny + height*ratio);
return env;
}
也添加可视化:
For visualization we scale all input by 100x
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/geometries/linestring.hpp>
#include <boost/geometry/geometries/multi_polygon.hpp>
#include <boost/geometry/core/cs.hpp>
#include <boost/geometry/arithmetic/arithmetic.hpp>
#include <boost/geometry/algorithms/for_each.hpp>
#include <boost/geometry/algorithms/envelope.hpp>
#include <boost/geometry/algorithms/intersection.hpp>
#include <boost/geometry/io/io.hpp>
#include <iostream>
#include <fstream>
namespace bg = boost::geometry;
using bg_point_type = bg::model::d2::point_xy<double>;
using bg_ring_type = bg::model::ring<bg_point_type>;
using bg_polygon_type = bg::model::polygon<bg_point_type>;
using bg_multipolygon_type = bg::model::multi_polygon<bg_polygon_type>;
using bg_box_type = bg::model::box<bg_point_type>;
template <typename G>
bg_box_type crop_box(G const& geom, double ratio) {
bg_box_type env;
bg::envelope(geom, env);
auto const maxy = env.max_corner().y();
auto const height = maxy - env.min_corner().y() ;
env.min_corner().set<1>(maxy - height*ratio);
return env;
}
template <typename G>
void diags(std::string name, G& geom) {
std::cout << name << ": " << bg::wkt(geom) << "\n";
std::string reason;
if (!bg::is_valid(geom, reason)) {
std::cout << name << ": " << reason << "\n";
bg::correct(geom);
std::cout << bg::wkt(geom) << "\n";
if (!bg::is_valid(geom, reason)) {
std::cout << name << " corrected: " << reason << "\n";
}
}
}
int main(int argc, char** argv) {
bool const visualize = argc>1 && argv[1]==std::string("-v");
//Find the envelope of the region of the object
bg_polygon_type obj_region;
bg::read_wkt("POLYGON((0.1 0.1,0.1 0.5,0.5 0.5,0.5 0.1,0.1 0.1))", obj_region);
if (visualize) {
bg::for_each_point(obj_region, [](bg_point_type& p) { bg::multiply_value(p, 100.0); });
}
diags("Input", obj_region);
bg_multipolygon_type out;
bg::intersection(crop_box(obj_region, 0.5), obj_region, out);
diags("Output", out);
if (visualize) {
std::ofstream svg("svg.svg");
boost::geometry::svg_mapper<bg_point_type> mapper(svg, 600, 600);
mapper.add(obj_region);
mapper.add(out);
mapper.map(obj_region, "fill-opacity:0.5;fill:rgb(204,153,0);stroke:rgb(204,153,0);stroke-width:2");
mapper.map(out, "fill-opacity:0.5;fill:rgb(153,204,0);stroke:rgb(153,204,0);stroke-width:2");
}
}
打印
Input: POLYGON((0.1 0.1,0.1 0.5,0.5 0.5,0.5 0.1,0.1 0.1))
Output: MULTIPOLYGON(((0.1 0.5,0.5 0.5,0.5 0.3,0.1 0.3,0.1 0.5)))
或者当 enabling visualization :
Input: POLYGON((10 10,10 50,50 50,50 10,10 10))
Output: MULTIPOLYGON(((10 50,50 50,50 30,10 30,10 50)))
以及以下 svg 输出:
关于c++ - 通过 boost 几何从多边形(环)裁剪部分多边形(环),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50533441/
我已经实现了 Bentley-Ottmann-algorithm检测多边形-多边形交叉点。这通常非常有效:由于多边形不自相交,因此两个多边形的线段并集中的任何线段相交表明两个多边形相交。 但是如果我看
我在 Silverlight 中有一个多边形(棋盘游戏的十六进制),例如; public class GridHex : IGridShape { ..... public IList
我创建了一个简单的 DirectX 应用程序来渲染一个顶点场。顶点呈现如下(如果从顶部查看): |\|\|\|\| |\|\|\|\| 每个三角形都是这样渲染的: 1 |\ 2 3 这应该意味着多边形
我的代码的某些部分here : var stage = new Kinetic.Stage({ container: "canvas", width: 300,
我正在尝试从 map 数据构造导航网格物体。步骤之一涉及将二进制图像(其中0表示占用空间,1表示自由空间)转换成平面直线图。 我正在尝试找到一种可靠的方法。我目前的想法是使用Canny边缘检测器,然后
我的任务是编写 MATLAB 代码来生成一个由 4 部分组成的 Logo ,如屏幕截图所示。左上角应为黑色,右下角应为白色。另一个程序应随机选择两种颜色。 我采取了以下方法: clear all cl
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
如何向 google.maps.Rectangle 和 google.maps.Polygon 添加标题? title 属性在 RectangleOptions 中不可用.我试过了,但没用(对于 go
我有一个表,用于将表上的段存储为多边形。然后我想获取所有被另一个多边形接触的线段,例如正方形或圆形。图片上:http://img.acianetmedia.com/GJ3 我将灰色小框表示为段和 bi
我正在我的网站上使用 CSS 来制作形状。它在 chrome 中运行良好,但在 mozilla、internet explorer 中打开时,它无法运行。 有人知道怎么解决吗? 这是 fiddle h
我使用 DrawingManager 在 Google map 上绘制圆形和多边形。我尝试使用下面的代码删除圆形/多边形。 selectedShape.setMap(null); 这里selected
我看到了很多如何检测碰撞的教程,但没有看到如何解决它。我正在制作一个自上而下的游戏,玩家具有圆形碰撞形状,而墙壁是各种多边形。 我正在使用 slick2d。我应该做的是,如果玩家与角落碰撞,我会按法线
我对 tkinter 比较陌生,我正在制作一个只使用正方形的游戏。我正在抄写的书只显示三角形。这是代码: # The tkinter launcher (Already complete) from
我在 OpenCV/Python 中工作,我遇到了这个问题。我已经使用 cv2.minAreaRect() 来获取围绕一组点的边界框。是否有任何其他函数/通用算法可以给我内接多边形(点集)的最大矩形?
如果给定一组线段 S ,我们能否设计一种算法来测试集合 S 中的线段是否可以形成多边形,我对它们是否相交多边形不感兴趣,我只想知道我可以测试什么标准, 任何建议 最佳答案 构建一个图形数据结构,其中节
如何从多个地理位置(经度、纬度值)创建多边形地理围栏。此外,如何在 Android 上跟踪用户进入此地理围栏区域或从该区域退出。 最佳答案 地理围栏只是一组形成多边形的纬度/经度点。获得纬度/经度点列
我想要一个 complex image like this在我的申请中。我想让用户点击复杂的多边形(在这种情况下是有边界的国家/地区)并突出显示他们点击的多边形。我有我需要用于该状态的图像。 我怎样才
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
我想在 python tkinter 中移动对象,特别是多边形。问题出在 is_click 函数中。我似乎无法弄清楚如何确定我是否单击了该对象。代码还没有 100% 完成,移动仍然需要完成,但我现在需
我有一个大多边形,我想找到与该多边形相交的要素,但由于多边形太大,我遇到超时异常。 我试图研究 JTS 方法,但不知道如何使用它。 final List coordinates = List.of(n
我是一名优秀的程序员,十分优秀!