GEOS 3.13.1
ConcaveHull.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (C) 2021 Paul Ramsey <pramsey@cleverelephant.ca>
7 *
8 * This is free software; you can redistribute and/or modify it under
9 * the terms of the GNU Lesser General Public Licence as published
10 * by the Free Software Foundation.
11 * See the COPYING file for more information.
12 *
13 **********************************************************************/
14
15#pragma once
16
17#include <geos/geom/Triangle.h>
18#include <geos/triangulate/tri/Tri.h>
19#include <geos/triangulate/tri/TriList.h>
20#include <geos/triangulate/quadedge/TriangleVisitor.h>
21#include <geos/algorithm/hull/HullTri.h>
22
23#include <queue>
24#include <deque>
25
26namespace geos {
27namespace geom {
28class Coordinate;
29class Geometry;
30class GeometryFactory;
31}
32namespace triangulate {
33namespace quadedge {
34class Quadedge;
36}
37}
38}
39
49
50namespace geos {
51namespace algorithm { // geos::algorithm
52namespace hull { // geos::algorithm::hull
53
54
55typedef std::priority_queue<HullTri*, std::vector<HullTri*>, HullTri::HullTriCompare> HullTriQueue;
56
57
95class GEOS_DLL ConcaveHull {
96
97public:
98
99 ConcaveHull(const Geometry* geom);
100
113 static double uniformEdgeLength(const Geometry* geom);
114
123 static std::unique_ptr<Geometry> concaveHullByLength(
124 const Geometry* geom, double maxLength);
125
126 static std::unique_ptr<Geometry> concaveHullByLength(
127 const Geometry* geom, double maxLength, bool isHolesAllowed);
128
140 static std::unique_ptr<Geometry> concaveHullByLengthRatio(
141 const Geometry* geom, double lengthRatio);
142
156 static std::unique_ptr<Geometry> concaveHullByLengthRatio(
157 const Geometry* geom,
158 double lengthRatio,
159 bool isHolesAllowed);
160
170 static std::unique_ptr<Geometry> alphaShape(
171 const Geometry* geom,
172 double alpha,
173 bool isHolesAllowed);
174
190 void setMaximumEdgeLength(double edgeLength);
191
203 void setMaximumEdgeLengthRatio(double edgeLengthRatio);
204
210 void setHolesAllowed(bool holesAllowed);
211
219 void setAlpha(double newAlpha);
220
226 std::unique_ptr<Geometry> getHull();
227
228
229private:
230
231 // Constants
232 static constexpr int PARAM_EDGE_LENGTH = 1;
233 static constexpr int PARAM_ALPHA = 2;
234
235 // Members
236 const Geometry* inputGeometry;
237 double maxEdgeLengthRatio;
238 double alpha;
239 bool isHolesAllowed;
240 int criteriaType;
241 double maxSizeInHull;
242 const GeometryFactory* geomFactory;
243
244 // Methods
245 static double computeTargetEdgeLength(
246 TriList<HullTri>& triList,
247 double edgeLengthFactor);
248
249 void computeHull(TriList<HullTri>& triList);
250 void computeHullBorder(TriList<HullTri>& triList);
251 void createBorderQueue(HullTriQueue& queue, TriList<HullTri>& triList);
252
263 void addBorderTri(HullTri* tri, HullTriQueue& queue);
264 void computeHullHoles(TriList<HullTri>& triList);
265 void setSize(HullTri* tri);
266
267
280 static std::vector<HullTri*> findCandidateHoles(
281 TriList<HullTri>& triList, double maxSizeInHull);
282
283 void removeHole(TriList<HullTri>& triList, HullTri* triHole);
284 void setSize(TriList<HullTri>& triList);
285
293 bool isInHull(const HullTri* tri) const;
294
295 bool isRemovableBorder(const HullTri* tri) const;
296 bool isRemovableHole(const HullTri* tri) const;
297
298 std::unique_ptr<Geometry> toGeometry(
299 TriList<HullTri>& triList,
300 const GeometryFactory* factory);
301
302
303};
304
305
306} // geos::algorithm::hull
307} // geos::algorithm
308} // geos
309
Definition ConcaveHull.h:95
static std::unique_ptr< Geometry > concaveHullByLengthRatio(const Geometry *geom, double lengthRatio, bool isHolesAllowed)
static std::unique_ptr< Geometry > concaveHullByLengthRatio(const Geometry *geom, double lengthRatio)
void setHolesAllowed(bool holesAllowed)
void setAlpha(double newAlpha)
static double uniformEdgeLength(const Geometry *geom)
static std::unique_ptr< Geometry > alphaShape(const Geometry *geom, double alpha, bool isHolesAllowed)
static std::unique_ptr< Geometry > concaveHullByLength(const Geometry *geom, double maxLength)
void setMaximumEdgeLength(double edgeLength)
void setMaximumEdgeLengthRatio(double edgeLengthRatio)
std::unique_ptr< Geometry > getHull()
Coordinate is the lightweight class used to store coordinates.
Definition Coordinate.h:217
Supplies a set of utility methods for building Geometry objects from CoordinateSequence or other Geom...
Definition GeometryFactory.h:70
Basic implementation of Geometry, constructed and destructed by GeometryFactory.
Definition Geometry.h:197
Represents a planar triangle, and provides methods for calculating various properties of triangles.
Definition Triangle.h:28
A class that contains the QuadEdges representing a planar subdivision that models a triangulation.
Definition QuadEdgeSubdivision.h:78
A class that represents the edge data structure which implements the quadedge algebra.
Definition QuadEdge.h:53
An interface for algorithms which process the triangles in a QuadEdgeSubdivision.
Definition TriangleVisitor.h:33
Definition TriList.h:54
Definition Tri.h:49
Basic namespace for all GEOS functionalities.
Definition geos.h:39