GEOS  3.13.0dev
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 
26 namespace geos {
27 namespace geom {
28 class Coordinate;
29 class Geometry;
30 class GeometryFactory;
31 }
32 namespace triangulate {
33 namespace quadedge {
34 class Quadedge;
36 }
37 }
38 }
39 
49 
50 namespace geos {
51 namespace algorithm { // geos::algorithm
52 namespace hull { // geos::algorithm::hull
53 
54 
55 typedef std::priority_queue<HullTri*, std::vector<HullTri*>, HullTri::HullTriCompare> HullTriQueue;
56 
57 
95 class GEOS_DLL ConcaveHull {
96 
97 public:
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 
229 private:
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
std::unique_ptr< Geometry > getHull()
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)
void setMaximumEdgeLength(double edgeLength)
static std::unique_ptr< Geometry > concaveHullByLength(const Geometry *geom, double maxLength)
void setMaximumEdgeLengthRatio(double edgeLengthRatio)
Coordinate is the lightweight class used to store coordinates.
Definition: Coordinate.h:216
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:196
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: Angle.h:25