LSST Applications g180d380827+0f66a164bb,g2079a07aa2+86d27d4dc4,g2305ad1205+7d304bc7a0,g29320951ab+500695df56,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+e42ea45bea,g48712c4677+36a86eeaa5,g487adcacf7+2dd8f347ac,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+c70619cc9d,g5a732f18d5+53520f316c,g5ea96fc03c+341ea1ce94,g64a986408d+f7cd9c7162,g858d7b2824+f7cd9c7162,g8a8a8dda67+585e252eca,g99cad8db69+469ab8c039,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+c92fc63c7e,gbd866b1f37+f7cd9c7162,gc120e1dc64+02c66aa596,gc28159a63d+0e5473021a,gc3e9b769f7+b0068a2d9f,gcf0d15dbbd+e42ea45bea,gdaeeff99f8+f9a426f77a,ge6526c86ff+84383d05b3,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+f7cd9c7162,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
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"
32#include "lsst/geom.h"
34
35namespace lsst {
36namespace afw {
37
38namespace detection {
39class Footprint;
40} // namespace detection
41
42namespace geom {
43
47class Span final {
48public:
51
53
54 Span(int y,
55 int x0,
56 int x1)
57 : _y(y), _x0(x0), _x1(x1) {}
58
59 Span(Interval const & x, int y) : _y(y), _x0(x.getMin()), _x1(x.getMax()) {}
60
62 Span() noexcept : _y(0), _x0(0), _x1(-1) {}
63
64 Span(Span const&) noexcept = default;
65 Span(Span&&) noexcept = default;
66 Span& operator=(Span const&) noexcept = default;
67 Span& operator=(Span&&) noexcept = default;
68 ~Span() noexcept = default;
69
71 Iterator begin() const noexcept { return Iterator(lsst::geom::Point2I(_x0, _y)); }
72
74 Iterator end() const noexcept { return Iterator(lsst::geom::Point2I(_x1 + 1, _y)); }
75
76 int getX0() const noexcept { return _x0; }
77 int& getX0() noexcept { return _x0; }
78 int getX1() const noexcept { return _x1; }
79 int& getX1() noexcept { return _x1; }
80 Interval getX() const noexcept { return Interval::fromMinMax(_x0, _x1); }
81 int getY() const noexcept { return _y; }
82 int& getY() noexcept { return _y; }
83 int getWidth() const noexcept { return _x1 - _x0 + 1; }
84 int getMinX() const noexcept { return _x0; }
85 int getMaxX() const noexcept { return _x1; }
86 int getBeginX() const noexcept { return _x0; }
87 int getEndX() const noexcept { return _x1 + 1; }
88 lsst::geom::Point2I const getMin() const noexcept {
89 return lsst::geom::Point2I(_x0, _y);
90 }
91 lsst::geom::Point2I const getMax() const noexcept {
92 return lsst::geom::Point2I(_x1, _y);
93 }
94
95 bool contains(int x) const noexcept { return (x >= _x0) && (x <= _x1); }
96 bool contains(int x, int y) const noexcept { return (x >= _x0) && (x <= _x1) && (y == _y); }
97 bool contains(lsst::geom::Point2I const& point) const noexcept {
98 return contains(point.getX(), point.getY());
99 }
100
102 bool isEmpty() const noexcept { return _x1 < _x0; }
103
105 std::string toString() const;
106
107 void shift(int dx, int dy) noexcept {
108 _x0 += dx;
109 _x1 += dx;
110 _y += dy;
111 }
112
114 friend std::ostream& operator<<(std::ostream& os, Span const& span) { return os << span.toString(); }
115
116 bool operator==(Span const& other) const noexcept {
117 return other.getY() == getY() && other.getMinX() == getMinX() && other.getMaxX() == getMaxX();
118 }
119 bool operator!=(Span const& other) const noexcept { return !(*this == other); }
120
122 std::size_t hash_value() const noexcept {
123 // Completely arbitrary seed
124 return utils::hashCombine(42, getY(), getMinX(), getMaxX());
125 }
126
127 /* Required to make Span "LessThanComparable" so they can be used
128 * in sorting, binary search, etc.
129 * http://www.sgi.com/tech/stl/LessThanComparable.html
130 */
131 bool operator<(const Span& b) const noexcept;
132
134
135private:
136 int _y;
137 int _x0;
138 int _x1;
139};
140} // namespace geom
141} // namespace afw
142} // namespace lsst
143
144namespace std {
145template <>
146struct hash<lsst::afw::geom::Span> {
149 result_type operator()(argument_type const& obj) const noexcept { return obj.hash_value(); }
150};
151} // namespace std
152
153#endif // LSST_AFW_GEOM_Span_h_INCLUDED
int y
Definition SpanSet.cc:48
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:102
int getBeginX() const noexcept
Begin (inclusive) x-value.
Definition Span.h:86
bool operator==(Span const &other) const noexcept
Definition Span.h:116
int getMinX() const noexcept
Minimum x-value.
Definition Span.h:84
int getMaxX() const noexcept
Maximum x-value.
Definition Span.h:85
SpanPixelIterator Iterator
An iterator over points in the Span.
Definition Span.h:50
lsst::geom::Point2I const getMax() const noexcept
Point corresponding to maximum x.
Definition Span.h:91
lsst::geom::Point2I const getMin() const noexcept
Point corresponding to minimum x.
Definition Span.h:88
Span() noexcept
Construct an empty Span with zero width at the origin.
Definition Span.h:62
int & getX0() noexcept
Return the starting x-value.
Definition Span.h:77
Span(Span &&) noexcept=default
bool operator!=(Span const &other) const noexcept
Definition Span.h:119
int getEndX() const noexcept
End (exclusive) x-value.
Definition Span.h:87
int & getY() noexcept
Return the y-value.
Definition Span.h:82
std::size_t hash_value() const noexcept
Return a hash of this object.
Definition Span.h:122
Span(int y, int x0, int x1)
Definition Span.h:54
Iterator begin() const noexcept
Return an iterator to the first pixel in the Span.
Definition Span.h:71
Interval getX() const noexcept
Definition Span.h:80
bool contains(int x) const noexcept
Definition Span.h:95
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:81
int getX0() const noexcept
Return the starting x-value.
Definition Span.h:76
bool contains(int x, int y) const noexcept
Definition Span.h:96
bool contains(lsst::geom::Point2I const &point) const noexcept
Definition Span.h:97
Iterator end() const noexcept
Return an iterator to one past the last pixel in the Span.
Definition Span.h:74
int getWidth() const noexcept
Return the number of pixels.
Definition Span.h:83
Span(Span const &) noexcept=default
void shift(int dx, int dy) noexcept
Definition Span.h:107
Span(Interval const &x, int y)
Definition Span.h:59
int getX1() const noexcept
Return the ending x-value.
Definition Span.h:78
int & getX1() noexcept
Return the ending x-value.
Definition Span.h:79
friend std::ostream & operator<<(std::ostream &os, Span const &span)
Stream output; delegates to toString().
Definition Span.h:114
An iterator that yields lsst::geom::Point2I and increases in the x direction.
A 1-d integer coordinate range.
Definition Interval.h:50
static IntervalI fromMinMax(Element min, Element max)
Construct an interval from its lower and upper bounds.
Definition Interval.cc:53
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition hashCombine.h:35
Point< int, 2 > Point2I
Definition Point.h:321
STL namespace.
result_type operator()(argument_type const &obj) const noexcept
Definition Span.h:149