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
Span.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008, 2009, 2010 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 
24 #ifndef LSST_AFW_GEOM_Span_h_INCLUDED
25 #define LSST_AFW_GEOM_Span_h_INCLUDED
26 
27 #include <string>
28 #include <iostream>
29 
30 #include "lsst/base.h"
31 #include "lsst/utils/hashCombine.h"
32 #include "lsst/geom.h"
34 
35 namespace lsst {
36 namespace afw {
37 
38 namespace detection {
39 class Footprint;
40 } // namespace detection
41 
42 namespace geom {
43 
47 class Span final {
48 public:
51 
52  Span(int y,
53  int x0,
54  int x1)
55  : _y(y), _x0(x0), _x1(x1) {}
56 
58  Span() noexcept : _y(0), _x0(0), _x1(-1) {}
59 
60  Span(Span const&) noexcept = default;
61  Span(Span&&) noexcept = default;
62  Span& operator=(Span const&) noexcept = default;
63  Span& operator=(Span&&) noexcept = default;
64  ~Span() noexcept = default;
65 
67  Iterator begin() const noexcept { return Iterator(lsst::geom::Point2I(_x0, _y)); }
68 
70  Iterator end() const noexcept { return Iterator(lsst::geom::Point2I(_x1 + 1, _y)); }
71 
72  int getX0() const noexcept { return _x0; }
73  int& getX0() noexcept { return _x0; }
74  int getX1() const noexcept { return _x1; }
75  int& getX1() noexcept { return _x1; }
76  int getY() const noexcept { return _y; }
77  int& getY() noexcept { return _y; }
78  int getWidth() const noexcept { return _x1 - _x0 + 1; }
79  int getMinX() const noexcept { return _x0; }
80  int getMaxX() const noexcept { return _x1; }
81  int getBeginX() const noexcept { return _x0; }
82  int getEndX() const noexcept { return _x1 + 1; }
83  lsst::geom::Point2I const getMin() const noexcept {
84  return lsst::geom::Point2I(_x0, _y);
85  }
86  lsst::geom::Point2I const getMax() const noexcept {
87  return lsst::geom::Point2I(_x1, _y);
88  }
89 
90  bool contains(int x) const noexcept { return (x >= _x0) && (x <= _x1); }
91  bool contains(int x, int y) const noexcept { return (x >= _x0) && (x <= _x1) && (y == _y); }
92  bool contains(lsst::geom::Point2I const& point) const noexcept {
93  return contains(point.getX(), point.getY());
94  }
95 
97  bool isEmpty() const noexcept { return _x1 < _x0; }
98 
100  std::string toString() const;
101 
102  void shift(int dx, int dy) noexcept {
103  _x0 += dx;
104  _x1 += dx;
105  _y += dy;
106  }
107 
109  friend std::ostream& operator<<(std::ostream& os, Span const& span) { return os << span.toString(); }
110 
111  bool operator==(Span const& other) const noexcept {
112  return other.getY() == getY() && other.getMinX() == getMinX() && other.getMaxX() == getMaxX();
113  }
114  bool operator!=(Span const& other) const noexcept { return !(*this == other); }
115 
117  std::size_t hash_value() const noexcept {
118  // Completely arbitrary seed
119  return utils::hashCombine(42, getY(), getMinX(), getMaxX());
120  }
121 
122  /* Required to make Span "LessThanComparable" so they can be used
123  * in sorting, binary search, etc.
124  * http://www.sgi.com/tech/stl/LessThanComparable.html
125  */
126  bool operator<(const Span& b) const noexcept;
127 
128  friend class detection::Footprint;
129 
130 private:
131  int _y;
132  int _x0;
133  int _x1;
134 };
135 } // namespace geom
136 } // namespace afw
137 } // namespace lsst
138 
139 namespace std {
140 template <>
141 struct hash<lsst::afw::geom::Span> {
144  result_type operator()(argument_type const& obj) const noexcept { return obj.hash_value(); }
145 };
146 } // namespace std
147 
148 #endif // LSST_AFW_GEOM_Span_h_INCLUDED
int getBeginX() const noexcept
Begin (inclusive) x-value.
Definition: Span.h:81
lsst::geom::Point2I const getMin() const noexcept
Point corresponding to minimum x.
Definition: Span.h:83
An iterator that yields lsst::geom::Point2I and increases in the x direction.
Basic LSST definitions.
Iterator end() const noexcept
Return an iterator to one past the last pixel in the Span.
Definition: Span.h:70
friend std::ostream & operator<<(std::ostream &os, Span const &span)
Stream output; delegates to toString().
Definition: Span.h:109
A range of pixels within one row of an Image.
Definition: Span.h:47
table::Key< int > b
int y
Definition: SpanSet.cc:49
STL namespace.
int getMaxX() const noexcept
Maximum x-value.
Definition: Span.h:80
Span() noexcept
Construct an empty Span with zero width at the origin.
Definition: Span.h:58
ItemVariant const * other
Definition: Schema.cc:56
int & getX1() noexcept
Return the ending x-value.
Definition: Span.h:75
lsst::geom::Point2I const getMax() const noexcept
Point corresponding to maximum x.
Definition: Span.h:86
bool contains(int x) const noexcept
Definition: Span.h:90
bool contains(lsst::geom::Point2I const &point) const noexcept
Definition: Span.h:92
int & getX0() noexcept
Return the starting x-value.
Definition: Span.h:73
STL class.
FastFinder::Iterator Iterator
Definition: FastFinder.cc:179
int & getY() noexcept
Return the y-value.
Definition: Span.h:77
A base class for image defects.
int getWidth() const noexcept
Return the number of pixels.
Definition: Span.h:78
Iterator begin() const noexcept
Return an iterator to the first pixel in the Span.
Definition: Span.h:67
int getEndX() const noexcept
End (exclusive) x-value.
Definition: Span.h:82
void shift(int dx, int dy) noexcept
Definition: Span.h:102
Point< int, 2 > Point2I
Definition: Point.h:321
Class to describe the properties of a detected object from an image.
Definition: Footprint.h:62
double x
int getMinX() const noexcept
Minimum x-value.
Definition: Span.h:79
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition: Span.h:117
bool operator!=(Span const &other) const noexcept
Definition: Span.h:114
lsst::afw::detection::Footprint Footprint
Definition: Source.h:59
bool isEmpty() const noexcept
Return true if the span contains no pixels.
Definition: Span.h:97
bool contains(int x, int y) const noexcept
Definition: Span.h:91
int getX1() const noexcept
Return the ending x-value.
Definition: Span.h:74
int getY() const noexcept
Return the y-value.
Definition: Span.h:76
result_type operator()(argument_type const &obj) const noexcept
Definition: Span.h:144
SpanPixelIterator Iterator
An iterator over points in the Span.
Definition: Span.h:50
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition: hashCombine.h:35
std::string toString() const
Return a string-representation of a Span.
Definition: Span.cc:43
std::ostream * os
Definition: Schema.cc:746
STL class.
bool operator==(Span const &other) const noexcept
Definition: Span.h:111
Span(int y, int x0, int x1)
Definition: Span.h:52
int getX0() const noexcept
Return the starting x-value.
Definition: Span.h:72