LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
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&);
70  Polygon(Polygon&&);
71  Polygon& operator=(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 
162  std::shared_ptr<Polygon> intersectionSingle(Box const& box) const;
164 
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 
189  std::vector<std::shared_ptr<Polygon>> union_(Box const& box) const;
191 
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); }
206  std::vector<std::shared_ptr<Polygon>> operator&(Box 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); }
210  std::vector<std::shared_ptr<Polygon>> operator^(Box const& rhs) const { return symDifference(rhs); }
212 
215 
224  ) const;
226  lsst::geom::AffineTransform const& transform
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 
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
std::shared_ptr< Polygon > convexHull() const
Produce a polygon from the convex hull.
Definition: Polygon.cc:400
bool operator==(Polygon const &other) const
Definition: Polygon.cc:341
std::vector< Point >::const_iterator begin() const
Iterator for vertices.
Definition: Polygon.cc:335
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Extent2I const &extent) const
Create image of polygon.
Definition: Polygon.h:248
std::vector< std::shared_ptr< Polygon > > intersection(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:366
bool operator!=(Polygon const &other) const
Definition: Polygon.h:138
Polygon & operator=(Polygon const &)
lsst::geom::Point2D Point
Definition: Polygon.h:62
Basic LSST definitions.
std::vector< std::shared_ptr< Polygon > > operator^(Polygon const &rhs) const
Operators for syntactic sugar.
Definition: Polygon.h:209
bool overlaps(Polygon const &other) const
Returns whether the polygons overlap each other.
Definition: Polygon.cc:354
A floating-point coordinate rectangle geometry.
Definition: Box.h:413
An object passed to Persistable::write to allow it to persist itself.
Low-level polynomials (including special polynomials) in C++.
Definition: Basis1d.h:26
An affine coordinate transformation consisting of a linear transformation and an offset.
T swap(T... args)
A coordinate class intended to represent absolute positions.
Interface supporting iteration over heterogenous containers.
Definition: Storable.h:58
Polygon(Box const &box)
Construct a rectangular Polygon whose vertices are the corners of a box.
Definition: Polygon.cc:284
void swap(Polygon &other) noexcept
Swap two polygons.
Definition: Polygon.h:102
STL namespace.
afw::table::PointKey< double > vertices
Definition: Polygon.cc:528
ItemVariant const * other
Definition: Schema.cc:56
std::vector< std::shared_ptr< Polygon > > symDifference(Polygon const &other) const
Return the symmetric difference of two polygons.
Definition: Polygon.cc:386
STL class.
bool isPersistable() const noexcept override
Whether Polygon is persistable which is always true.
Definition: Polygon.h:254
std::shared_ptr< Polygon > unionSingle(Polygon const &other) const
Returns the union of two polygons.
Definition: Polygon.cc:374
std::vector< std::shared_ptr< Polygon > > operator|(Polygon const &rhs) const
Operators for syntactic sugar.
Definition: Polygon.h:207
Box getBBox() const
Return bounding box.
Definition: Polygon.cc:310
A base class for image defects.
std::vector< std::pair< Point, Point > > getEdges() const
Get vector of edges.
Definition: Polygon.cc:322
std::vector< std::shared_ptr< Polygon > > operator|(Box const &rhs) const
Operators for syntactic sugar.
Definition: Polygon.h:208
std::string toString() const override
Create a string representation of this object.
Definition: Polygon.cc:595
bool equals(typehandling::Storable const &other) const noexcept override
Compare this object to another Storable.
Definition: Polygon.cc:601
std::vector< std::shared_ptr< Polygon > > union_(Polygon const &other) const
Returns the union of two polygons.
Definition: Polygon.cc:380
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: Polygon.cc:578
std::size_t hash_value() const noexcept override
Return a hash of this object.
Definition: Polygon.cc:345
size_t operator()(argument_type const &obj) const noexcept
Definition: Polygon.h:295
std::vector< std::shared_ptr< Polygon > > operator^(Box const &rhs) const
Operators for syntactic sugar.
Definition: Polygon.h:210
An exception that indicates the single-polygon assumption has been violated.
Definition: Polygon.h:53
std::vector< std::shared_ptr< Polygon > > operator &(Polygon const &rhs) const
Operators for syntactic sugar.
Definition: Polygon.h:205
std::shared_ptr< Polygon > subSample(size_t num) const
Sub-sample each edge.
Definition: Polygon.cc:421
std::ostream & operator<<(std::ostream &os, Storable const &storable)
Output operator for Storable.
Definition: Storable.h:174
std::vector< Point > getVertices() const
Get vector of vertices.
Definition: Polygon.cc:333
STL class.
size_t getNumEdges() const
Return number of edges.
Definition: Polygon.cc:305
std::shared_ptr< Polygon > simplify(double const distance) const
Return a simplified polygon.
Definition: Polygon.cc:394
std::shared_ptr< Polygon > intersectionSingle(Polygon const &other) const
Returns the intersection of two polygons.
Definition: Polygon.cc:358
std::vector< Point >::const_iterator end() const
Iterator for vertices.
Definition: Polygon.cc:337
Cartesian polygons.
Definition: Polygon.h:59
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: Polygon.cc:576
std::shared_ptr< typehandling::Storable > cloneStorable() const override
Create a new Polygon that is a copy of this one.
Definition: Polygon.cc:591
std::ostream * os
Definition: Schema.cc:746
#define LSST_EXCEPTION_TYPE(t, b, c)
Macro used to define new types of exceptions without additional data.
Definition: Exception.h:69
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
bool contains(Point const &point) const
Returns whether the polygon contains the point.
Definition: Polygon.cc:352
An integer coordinate rectangle.
Definition: Box.h:55
STL class.
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Box2I const &bbox) const
Create image of polygon.
Definition: Polygon.cc:443
std::shared_ptr< Polygon > transform(TransformPoint2ToPoint2 const &transform) const
Transform the polygon.
Definition: Polygon.cc:406
Transform LSST spatial data, such as lsst::geom::Point2D and lsst::geom::SpherePoint, using an AST mapping.
Definition: Transform.h:67
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104
double calculatePerimeter() const
Definition: Polygon.cc:320