LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
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
double x
ItemVariant const * other
Definition: Schema.cc:56
std::ostream * os
Definition: Schema.cc:746
int y
Definition: SpanSet.cc:49
table::Key< int > b
Basic LSST definitions.
Class to describe the properties of a detected object from an image.
Definition: Footprint.h:63
A range of pixels within one row of an Image.
Definition: Span.h:47
bool isEmpty() const noexcept
Return true if the span contains no pixels.
Definition: Span.h:97
int getBeginX() const noexcept
Begin (inclusive) x-value.
Definition: Span.h:81
SpanPixelIterator Iterator
An iterator over points in the Span.
Definition: Span.h:50
bool operator==(Span const &other) const noexcept
Definition: Span.h:111
int getMinX() const noexcept
Minimum x-value.
Definition: Span.h:79
int getMaxX() const noexcept
Maximum x-value.
Definition: Span.h:80
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
lsst::geom::Point2I const getMin() const noexcept
Point corresponding to minimum x.
Definition: Span.h:83
friend std::ostream & operator<<(std::ostream &os, Span const &span)
Stream output; delegates to toString().
Definition: Span.h:109
int & getY() noexcept
Return the y-value.
Definition: Span.h:77
Span() noexcept
Construct an empty Span with zero width at the origin.
Definition: Span.h:58
Span(Span &&) noexcept=default
bool operator!=(Span const &other) const noexcept
Definition: Span.h:114
int getEndX() const noexcept
End (exclusive) x-value.
Definition: Span.h:82
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition: Span.h:117
Span(int y, int x0, int x1)
Definition: Span.h:52
int & getX0() noexcept
Return the starting x-value.
Definition: Span.h:73
Iterator begin() const noexcept
Return an iterator to the first pixel in the Span.
Definition: Span.h:67
bool contains(int x) const noexcept
Definition: Span.h:90
bool operator<(const Span &b) const noexcept
Definition: Span.cc:32
std::string toString() const
Return a string-representation of a Span.
Definition: Span.cc:43
int getY() const noexcept
Return the y-value.
Definition: Span.h:76
int getX0() const noexcept
Return the starting x-value.
Definition: Span.h:72
bool contains(int x, int y) const noexcept
Definition: Span.h:91
bool contains(lsst::geom::Point2I const &point) const noexcept
Definition: Span.h:92
Iterator end() const noexcept
Return an iterator to one past the last pixel in the Span.
Definition: Span.h:70
int getWidth() const noexcept
Return the number of pixels.
Definition: Span.h:78
Span(Span const &) noexcept=default
void shift(int dx, int dy) noexcept
Definition: Span.h:102
int getX1() const noexcept
Return the ending x-value.
Definition: Span.h:74
An iterator that yields lsst::geom::Point2I and increases in the x direction.
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
lsst::afw::detection::Footprint Footprint
Definition: Source.h:59
Point< int, 2 > Point2I
Definition: Point.h:321
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition: hashCombine.h:35
A base class for image defects.
STL namespace.
result_type operator()(argument_type const &obj) const noexcept
Definition: Span.h:144