Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04dff08e69+42feea4ef2,g0fba68d861+a0b9de4ea6,g1ec0fe41b4+f536777771,g1fd858c14a+42269675ea,g35bb328faa+fcb1d3bbc8,g4af146b050+bbef1ba6f0,g4d2262a081+8f21adb3a6,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+43e3f0d37c,g6273192d42+e9a7147bac,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g7bbe65ff3e+43e3f0d37c,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+43704db330,g8852436030+eb2388797a,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+43e3f0d37c,g989de1cb63+4086c0989b,g9d31334357+43e3f0d37c,g9f33ca652e+9b312035f9,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+61f2793e68,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+834c1753f9,gcf25f946ba+eb2388797a,gd6cbbdb0b4+af3c3595f5,gde0f65d7ad+9e0145b227,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+37a5db1cfd,gf67bdafdda+4086c0989b,v29.0.0.rc7
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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"
42
43namespace lsst {
44namespace afw {
45namespace geom {
46namespace polygon {
47
54
58
60public:
63
67 explicit Polygon(Box const& box);
68
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
124
128 std::vector<Point>::const_iterator begin() const;
129 std::vector<Point>::const_iterator end() const;
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
148 std::vector<bool> contains(std::vector<Point> const &points) const;
149 std::vector<bool> contains(std::vector<lsst::geom::Point2I> const &points) const;
151
153 template <typename Xtype, typename Ytype>
154 bool contains(Xtype x, Ytype y) const {
155 Point point(x, y);
156 return contains(point);
157 }
158
160
164 bool overlaps(Polygon const& other) const;
165 bool overlaps(Box const& box) const;
167
169
177
179
185
187
191 std::shared_ptr<Polygon> unionSingle(Polygon const& other) const;
192 std::shared_ptr<Polygon> unionSingle(Box const& box) const;
194
196
204
206
210
214 std::shared_ptr<Polygon> simplify(double const distance) const;
215
217
221 std::vector<std::shared_ptr<Polygon>> operator|(Box const& rhs) const { return union_(rhs); }
225
228
230
237 ) const;
240 ) const;
242
244
247 std::shared_ptr<Polygon> subSample(size_t num) const;
248 std::shared_ptr<Polygon> subSample(double maxLength) const;
250
252
264
265
267 bool isPersistable() const noexcept override { return true; }
268
271
273 std::string toString() const override;
274
280 bool equals(typehandling::Storable const& other) const noexcept override;
281
282protected:
283 std::string getPersistenceName() const override;
284
285 void write(OutputArchiveHandle& handle) const override;
286
287private:
289
290 struct Impl;
292 Polygon(std::shared_ptr<Impl> impl) : _impl(impl) {}
294};
295
296template bool Polygon::contains<double, double>(double, double) const;
297template bool Polygon::contains<float, float>(float, float) const;
298template bool Polygon::contains<int, int>(int, int) const;
300
302std::ostream& operator<<(std::ostream& os, Polygon const& poly);
303} // namespace polygon
304} // namespace geom
305} // namespace afw
306} // namespace lsst
307
308namespace std {
309template <>
313 size_t operator()(argument_type const& obj) const noexcept { return obj.hash_value(); }
314};
315} // namespace std
316
317#endif
#define LSST_EXCEPTION_TYPE(t, b, c)
Macro used to define new types of exceptions without additional data.
Definition Exception.h:69
Basic LSST definitions.
Cartesian polygons.
Definition Polygon.h:59
lsst::geom::Point2D Point
Definition Polygon.h:62
std::vector< std::shared_ptr< Polygon > > operator^(Polygon const &rhs) const
Definition Polygon.h:222
std::shared_ptr< Polygon > unionSingle(Polygon const &other) const
Returns the union of two polygons.
Definition Polygon.cc:394
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:374
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:420
std::vector< std::shared_ptr< Polygon > > operator|(Polygon const &rhs) const
Definition Polygon.h:220
std::vector< std::pair< Point, Point > > getEdges() const
Get vector of edges.
Definition Polygon.cc:326
std::vector< std::shared_ptr< Polygon > > operator|(Box const &rhs) const
Definition Polygon.h:221
std::shared_ptr< Polygon > intersectionSingle(Polygon const &other) const
Returns the intersection of two polygons.
Definition Polygon.cc:378
std::vector< std::shared_ptr< Polygon > > operator&(Polygon const &rhs) const
Operators for syntactic sugar.
Definition Polygon.h:218
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Box2I const &bbox) const
Create image of polygon.
Definition Polygon.cc:462
std::vector< std::shared_ptr< Polygon > > operator^(Box const &rhs) const
Definition Polygon.h:223
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:440
std::vector< std::shared_ptr< Polygon > > intersection(Polygon const &other) const
Returns the intersection of two polygons.
Definition Polygon.cc:386
size_t getNumEdges() const
Return number of edges.
Definition Polygon.cc:309
std::shared_ptr< Polygon > transform(TransformPoint2ToPoint2 const &transform) const
Transform the polygon.
Definition Polygon.cc:426
std::shared_ptr< typehandling::Storable > cloneStorable() const override
Create a new Polygon that is a copy of this one.
Definition Polygon.cc:609
std::vector< Point > getVertices() const
Get vector of vertices.
Definition Polygon.cc:337
std::shared_ptr< Polygon > simplify(double const distance) const
Return a simplified polygon.
Definition Polygon.cc:414
std::vector< std::shared_ptr< Polygon > > operator&(Box const &rhs) const
Definition Polygon.h:219
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:613
bool isPersistable() const noexcept override
Whether Polygon is persistable which is always true.
Definition Polygon.h:267
std::vector< std::shared_ptr< Polygon > > union_(Polygon const &other) const
Returns the union of two polygons.
Definition Polygon.cc:400
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:406
std::shared_ptr< afw::image::Image< float > > createImage(lsst::geom::Extent2I const &extent) const
Definition Polygon.h:261
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition Polygon.cc:594
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:596
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:619
An exception that indicates the single-polygon assumption has been violated.
Definition Polygon.h:53
A CRTP facade class for subclasses of Persistable.
io::OutputArchiveHandle OutputArchiveHandle
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
DOXYGEN_IGNORE std::ostream & operator<<(std::ostream &os, Polygon const &poly)
Stream polygon.
Definition Polygon.cc:176
Transform< Point2Endpoint, Point2Endpoint > TransformPoint2ToPoint2
Definition Transform.h:300
Point< double, 2 > Point2D
Definition Point.h:324
Extent< int, 2 > Extent2I
Definition Extent.h:397
Point< int, 2 > Point2I
Definition Point.h:321
STL namespace.
lsst::afw::geom::polygon::Polygon argument_type
Definition Polygon.h:311
size_t operator()(argument_type const &obj) const noexcept
Definition Polygon.h:313
T swap(T... args)