LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
Background.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008-2015 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 <https://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 /*
26  * Background estimation class code
27  */
28 #include <iostream>
29 #include <limits>
30 #include <cmath>
31 #include <vector>
36 
37 namespace lsst {
38 namespace ex = pex::exceptions;
39 
40 namespace afw {
41 namespace math {
42 
43 template <typename ImageT>
44 Background::Background(ImageT const& img, BackgroundControl const& bgCtrl)
45  : lsst::daf::base::Citizen(typeid(this)),
46  _imgBBox(img.getBBox()),
47  _bctrl(new BackgroundControl(bgCtrl)),
48  _asUsedInterpStyle(Interpolate::UNKNOWN),
49  _asUsedUndersampleStyle(THROW_EXCEPTION),
50  _xcen(0),
51  _ycen(0),
52  _xorig(0),
53  _yorig(0),
54  _xsize(0),
55  _ysize(0) {
56  if (_imgBBox.isEmpty()) {
57  throw LSST_EXCEPT(ex::InvalidParameterError, "Image contains no pixels");
58  }
59 
60  // Check that an int's large enough to hold the number of pixels
61  if (_imgBBox.getWidth() * static_cast<double>(_imgBBox.getHeight()) > std::numeric_limits<int>::max()) {
63  str(boost::format("Image %dx%d has more pixels than fit in an int (%d)") %
65  }
66 
67  _setCenOrigSize(_imgBBox.getWidth(), _imgBBox.getHeight(), bgCtrl.getNxSample(), bgCtrl.getNySample());
68 }
69 
70 Background::Background(lsst::geom::Box2I const imageBBox, int const nx, int const ny)
71  : lsst::daf::base::Citizen(typeid(this)),
72  _imgBBox(imageBBox),
73  _bctrl(new BackgroundControl(nx, ny)),
76  _xcen(0),
77  _ycen(0),
78  _xorig(0),
79  _yorig(0),
80  _xsize(0),
81  _ysize(0) {
82  if (_imgBBox.isEmpty()) {
83  throw LSST_EXCEPT(ex::InvalidParameterError, "Image contains no pixels");
84  }
85 
86  // Check that an int's large enough to hold the number of pixels
87  if (_imgBBox.getWidth() * static_cast<double>(_imgBBox.getHeight()) > std::numeric_limits<int>::max()) {
89  str(boost::format("Image %dx%d has more pixels than fit in an int (%d)") %
91  }
92 
93  _setCenOrigSize(_imgBBox.getWidth(), _imgBBox.getHeight(), nx, ny);
94 }
95 
96 void Background::_setCenOrigSize(int const width, int const height, int const nxSample, int const nySample) {
97  _xcen.resize(nxSample);
98  _ycen.resize(nySample);
99  _xorig.resize(nxSample);
100  _yorig.resize(nySample);
101  _xsize.resize(nxSample), _ysize.resize(nySample);
102 
103  // Compute the centers and origins for the cells
104  for (int iX = 0; iX < nxSample; ++iX) {
105  const int endx = std::min(((iX + 1) * width + nxSample / 2) / nxSample, width);
106  _xorig[iX] = (iX == 0) ? 0 : _xorig[iX - 1] + _xsize[iX - 1];
107  _xsize[iX] = endx - _xorig[iX];
108  _xcen[iX] = _xorig[iX] + (0.5 * _xsize[iX]) - 0.5;
109  }
110 
111  for (int iY = 0; iY < nySample; ++iY) {
112  const int endy = std::min(((iY + 1) * height + nySample / 2) / nySample, height);
113  _yorig[iY] = (iY == 0) ? 0 : _yorig[iY - 1] + _ysize[iY - 1];
114  _ysize[iY] = endy - _yorig[iY];
115  _ycen[iY] = _yorig[iY] + (0.5 * _ysize[iY]) - 0.5;
116  }
117 }
118 
120  static std::map<std::string, UndersampleStyle> undersampleStrings;
121  if (undersampleStrings.size() == 0) {
122  undersampleStrings["THROW_EXCEPTION"] = THROW_EXCEPTION;
123  undersampleStrings["REDUCE_INTERP_ORDER"] = REDUCE_INTERP_ORDER;
124  undersampleStrings["INCREASE_NXNYSAMPLE"] = INCREASE_NXNYSAMPLE;
125  }
126 
127  if (undersampleStrings.find(style) == undersampleStrings.end()) {
128  throw LSST_EXCEPT(ex::InvalidParameterError, "Understample style not defined: " + style);
129  }
130  return undersampleStrings[style];
131 }
133 /*
134  * Explicit instantiations
135  *
136  */
137 #define INSTANTIATE_BACKGROUND(TYPE) \
138  template Background::Background(image::Image<TYPE> const& img, BackgroundControl const& bgCtrl); \
139  template Background::Background(image::MaskedImage<TYPE> const& img, BackgroundControl const& bgCtrl); \
140  template std::shared_ptr<image::Image<TYPE>> Background::getImage<TYPE>(Interpolate::Style const, \
141  UndersampleStyle const) const;
142 
143 INSTANTIATE_BACKGROUND(float)
144 
145 } // namespace math
147 } // namespace afw
148 } // namespace lsst
std::vector< int > _xsize
x size of sub images
Definition: Background.h:381
UndersampleStyle stringToUndersampleStyle(std::string const &style)
Conversion function to switch a string to an UndersampleStyle.
Definition: Background.cc:119
std::vector< double > _xcen
x center pix coords of sub images
Definition: Background.h:377
std::vector< int > _yorig
y origin ...
Definition: Background.h:380
int getHeight() const noexcept
Definition: Box.h:175
Background(ImageT const &img, BackgroundControl const &bgCtrl)
Constructor for Background.
Definition: Background.cc:44
lsst::geom::Box2I _imgBBox
size and origin of input image
Definition: Background.h:372
bool isEmpty() const noexcept
Return true if the box contains no points.
Definition: Box.h:183
std::vector< double > _ycen
y center ...
Definition: Background.h:378
T end(T... args)
STL class.
Pass parameters to a Background object.
Definition: Background.h:57
T resize(T... args)
STL class.
T min(T... args)
Interpolate::Style _asUsedInterpStyle
the style we actually used
Definition: Background.h:374
A base class for image defects.
Reports when the result of an arithmetic operation is too large for the destination type...
Definition: Runtime.h:124
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:168
int getWidth() const noexcept
Definition: Box.h:174
T max(T... args)
T find(T... args)
T size(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Citizen(const std::type_info &)
Definition: Citizen.cc:163
std::vector< int > _xorig
x origin pix coords of sub images
Definition: Background.h:379
std::shared_ptr< BackgroundControl > _bctrl
control info set by user.
Definition: Background.h:373
std::vector< int > _ysize
y size ...
Definition: Background.h:382
UndersampleStyle _asUsedUndersampleStyle
the undersampleStyle we actually used
Definition: Background.h:375
Reports invalid arguments.
Definition: Runtime.h:66
An integer coordinate rectangle.
Definition: Box.h:54