LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
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:525
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:373
std::vector< Point >::const_iterator begin() const
Iterator for vertices.
Definition: Polygon.cc:334
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:353
Box getBBox() const
Return bounding box.
Definition: Polygon.cc:309
std::shared_ptr< Polygon > convexHull() const
Produce a polygon from the convex hull.
Definition: Polygon.cc:399
std::vector< std::pair< Point, Point > > getEdges() const
Get vector of edges.
Definition: Polygon.cc:321
std::shared_ptr< Polygon > intersectionSingle(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:357
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Box2I const &bbox) const
Create image of polygon.
Definition: Polygon.cc:441
Polygon(Box const &box)
Construct a rectangular Polygon whose vertices are the corners of a box.
Definition: Polygon.cc:283
std::shared_ptr< Polygon > subSample(size_t num) const
Sub-sample each edge.
Definition: Polygon.cc:419
std::vector< std::shared_ptr< Polygon > > intersection(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:365
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:304
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:405
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:588
std::vector< Point > getVertices() const
Get vector of vertices.
Definition: Polygon.cc:332
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:393
bool operator==(Polygon const &other) const
Definition: Polygon.cc:340
std::string toString() const override
Create a string representation of this object.
Definition: Polygon.cc:592
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:379
std::size_t hash_value() const noexcept override
Return a hash of this object.
Definition: Polygon.cc:344
std::vector< std::shared_ptr< Polygon > > symDifference(Polygon const &other) const
Return the symmetric difference of two polygons.
Definition: Polygon.cc:385
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: Polygon.cc:573
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:351
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: Polygon.cc:575
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:336
bool equals(typehandling::Storable const &other) const noexcept override
Compare this object to another Storable.
Definition: Polygon.cc:598
double calculatePerimeter() const
Definition: Polygon.cc:319
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:171
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)