LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Polygon.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008-2014 LSST Corporation.
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 #if !defined(LSST_AFW_GEOM_POLYGON_POLYGON_H)
26 #define LSST_AFW_GEOM_POLYGON_POLYGON_H
27 
28 #include <vector>
29 #include <utility> // for std::pair
30 
31 #include <memory>
32 
33 #include "lsst/base.h"
34 #include "lsst/pex/exceptions.h"
35 #include "lsst/geom/Box.h"
36 #include "lsst/geom/Point.h"
39 #include "lsst/afw/image/Image.h"
42 
43 namespace lsst {
44 namespace afw {
45 namespace geom {
46 namespace polygon {
47 
54 
58 
60 public:
63 
67  explicit Polygon(Box const& box);
68 
69  Polygon(Polygon const&);
73 
74  ~Polygon() override;
75 
84  Polygon(Box const& box, TransformPoint2ToPoint2 const& transform);
85 
96 
98  explicit Polygon(std::vector<Point> const& vertices);
100 
102  void swap(Polygon& other) noexcept { std::swap(this->_impl, other._impl); }
103 
107  size_t getNumEdges() const;
108 
110  Box getBBox() const;
111 
112  Point calculateCenter() const;
113  double calculateArea() const;
114  double calculatePerimeter() const;
115 
122 
131 
136 
137  bool operator==(Polygon const& other) const;
138  bool operator!=(Polygon const& other) const { return !(*this == other); }
139 
141  std::size_t hash_value() const noexcept override;
142 
144  bool contains(Point const& point) const;
145 
147  bool overlaps(Polygon const& other) const;
152  bool overlaps(Box const& box) const;
154 
156  std::shared_ptr<Polygon> intersectionSingle(Polygon const& other) const;
162  std::shared_ptr<Polygon> intersectionSingle(Box const& box) const;
164 
166  std::vector<std::shared_ptr<Polygon>> intersection(Polygon const& other) const;
170  std::vector<std::shared_ptr<Polygon>> intersection(Box const& box) const;
172 
174  std::shared_ptr<Polygon> unionSingle(Polygon const& other) const;
179  std::shared_ptr<Polygon> unionSingle(Box const& box) const;
181 
183  std::vector<std::shared_ptr<Polygon>> union_(Polygon const& other) const;
189  std::vector<std::shared_ptr<Polygon>> union_(Box const& box) const;
191 
193  std::vector<std::shared_ptr<Polygon>> symDifference(Polygon const& other) const;
195  std::vector<std::shared_ptr<Polygon>> symDifference(Box const& box) const;
197 
201  std::shared_ptr<Polygon> simplify(double const distance) const;
202 
204  std::vector<std::shared_ptr<Polygon>> operator&(Polygon const& rhs) const { return intersection(rhs); }
207  std::vector<std::shared_ptr<Polygon>> operator|(Polygon const& rhs) const { return union_(rhs); }
208  std::vector<std::shared_ptr<Polygon>> operator|(Box const& rhs) const { return union_(rhs); }
212 
215 
224  ) const;
227  ) const;
229 
231  std::shared_ptr<Polygon> subSample(size_t num) const;
235  std::shared_ptr<Polygon> subSample(double maxLength) const;
237 
249  return createImage(lsst::geom::Box2I(lsst::geom::Point2I(0, 0), extent));
250  }
252 
254  bool isPersistable() const noexcept override { return true; }
255 
258 
260  std::string toString() const override;
261 
267  bool equals(typehandling::Storable const& other) const noexcept override;
268 
269 protected:
270  std::string getPersistenceName() const override;
271 
272  void write(OutputArchiveHandle& handle) const override;
273 
274 private:
276  struct Impl;
278  std::shared_ptr<Impl> _impl;
279  Polygon(std::shared_ptr<Impl> impl) : _impl(impl) {}
281 };
282 
284 std::ostream& operator<<(std::ostream& os, Polygon const& poly);
285 } // namespace polygon
286 } // namespace geom
287 } // namespace afw
288 } // namespace lsst
289 
290 namespace std {
291 template <>
292 struct hash<lsst::afw::geom::polygon::Polygon> {
295  size_t operator()(argument_type const& obj) const noexcept { return obj.hash_value(); }
296 };
297 } // namespace std
298 
299 #endif
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
#define LSST_EXCEPTION_TYPE(t, b, c)
Macro used to define new types of exceptions without additional data.
Definition: Exception.h:69
afw::table::PointKey< double > vertices
Definition: Polygon.cc:530
std::ostream * os
Definition: Schema.cc:557
Basic LSST definitions.
Transform LSST spatial data, such as lsst::geom::Point2D and lsst::geom::SpherePoint,...
Definition: Transform.h:68
Cartesian polygons.
Definition: Polygon.h:59
lsst::geom::Point2D Point
Definition: Polygon.h:62
std::shared_ptr< Polygon > unionSingle(Polygon const &other) const
Returns the union of two polygons.
Definition: Polygon.cc:378
std::vector< Point >::const_iterator begin() const
Iterator for vertices.
Definition: Polygon.cc:339
bool operator!=(Polygon const &other) const
Definition: Polygon.h:138
bool overlaps(Polygon const &other) const
Returns whether the polygons overlap each other.
Definition: Polygon.cc:358
Box getBBox() const
Return bounding box.
Definition: Polygon.cc:314
std::shared_ptr< Polygon > convexHull() const
Produce a polygon from the convex hull.
Definition: Polygon.cc:404
std::vector< std::pair< Point, Point > > getEdges() const
Get vector of edges.
Definition: Polygon.cc:326
std::shared_ptr< Polygon > intersectionSingle(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:362
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Box2I const &bbox) const
Create image of polygon.
Definition: Polygon.cc:446
Polygon(Box const &box)
Construct a rectangular Polygon whose vertices are the corners of a box.
Definition: Polygon.cc:288
std::shared_ptr< Polygon > subSample(size_t num) const
Sub-sample each edge.
Definition: Polygon.cc:424
std::vector< std::shared_ptr< Polygon > > intersection(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:370
std::vector< std::shared_ptr< Polygon > > operator^(Polygon const &rhs) const
Definition: Polygon.h:209
size_t getNumEdges() const
Return number of edges.
Definition: Polygon.cc:309
std::vector< std::shared_ptr< Polygon > > operator^(Box const &rhs) const
Definition: Polygon.h:210
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Extent2I const &extent) const
Definition: Polygon.h:248
std::shared_ptr< Polygon > transform(TransformPoint2ToPoint2 const &transform) const
Transform the polygon.
Definition: Polygon.cc:410
std::vector< std::shared_ptr< Polygon > > operator|(Polygon const &rhs) const
Definition: Polygon.h:207
std::shared_ptr< typehandling::Storable > cloneStorable() const override
Create a new Polygon that is a copy of this one.
Definition: Polygon.cc:593
std::vector< Point > getVertices() const
Get vector of vertices.
Definition: Polygon.cc:337
std::vector< std::shared_ptr< Polygon > > operator|(Box const &rhs) const
Definition: Polygon.h:208
std::shared_ptr< Polygon > simplify(double const distance) const
Return a simplified polygon.
Definition: Polygon.cc:398
bool operator==(Polygon const &other) const
Definition: Polygon.cc:345
std::string toString() const override
Create a string representation of this object.
Definition: Polygon.cc:597
bool isPersistable() const noexcept override
Whether Polygon is persistable which is always true.
Definition: Polygon.h:254
std::vector< std::shared_ptr< Polygon > > union_(Polygon const &other) const
Returns the union of two polygons.
Definition: Polygon.cc:384
std::size_t hash_value() const noexcept override
Return a hash of this object.
Definition: Polygon.cc:349
std::vector< std::shared_ptr< Polygon > > symDifference(Polygon const &other) const
Return the symmetric difference of two polygons.
Definition: Polygon.cc:390
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: Polygon.cc:578
std::vector< std::shared_ptr< Polygon > > operator&(Box const &rhs) const
Definition: Polygon.h:206
bool contains(Point const &point) const
Returns whether the polygon contains the point.
Definition: Polygon.cc:356
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: Polygon.cc:580
void swap(Polygon &other) noexcept
Swap two polygons.
Definition: Polygon.h:102
Polygon & operator=(Polygon const &)
Polygon & operator=(Polygon &&)
std::vector< Point >::const_iterator end() const
Definition: Polygon.cc:341
bool equals(typehandling::Storable const &other) const noexcept override
Compare this object to another Storable.
Definition: Polygon.cc:603
double calculatePerimeter() const
Definition: Polygon.cc:324
An exception that indicates the single-polygon assumption has been violated.
Definition: Polygon.h:53
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
io::OutputArchiveHandle OutputArchiveHandle
Definition: Persistable.h:108
Interface supporting iteration over heterogenous containers.
Definition: Storable.h:58
An affine coordinate transformation consisting of a linear transformation and an offset.
A floating-point coordinate rectangle geometry.
Definition: Box.h:413
An integer coordinate rectangle.
Definition: Box.h:55
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104
std::ostream & operator<<(std::ostream &os, Polygon const &poly)
Stream polygon.
Definition: Polygon.cc:176
class[[deprecated("Removed with no replacement (but see lsst::afw::image::TransmissionCurve). Will be " "removed after v22.")]] FilterProperty final
Describe the properties of a Filter (e.g.
Definition: Filter.h:53
Low-level polynomials (including special polynomials) in C++.
Definition: Basis1d.h:26
Point< double, 2 > Point2D
Definition: Point.h:324
A base class for image defects.
STL namespace.
size_t operator()(argument_type const &obj) const noexcept
Definition: Polygon.h:295
T swap(T... args)