LSSTApplications  21.0.0+75b29a8a7f,21.0.0+e70536a077,21.0.0-1-ga51b5d4+62c747d40b,21.0.0-11-ga6ea59e8e+47cba9fc36,21.0.0-2-g103fe59+914993bf7c,21.0.0-2-g1367e85+e2614ded12,21.0.0-2-g45278ab+e70536a077,21.0.0-2-g4bc9b9f+7b2b5f8678,21.0.0-2-g5242d73+e2614ded12,21.0.0-2-g54e2caa+6403186824,21.0.0-2-g7f82c8f+3ac4acbffc,21.0.0-2-g8dde007+04a6aea1af,21.0.0-2-g8f08a60+9402881886,21.0.0-2-ga326454+3ac4acbffc,21.0.0-2-ga63a54e+81dd751046,21.0.0-2-gc738bc1+5f65c6e7a9,21.0.0-2-gde069b7+26c92b3210,21.0.0-2-gecfae73+0993ddc9bd,21.0.0-2-gfc62afb+e2614ded12,21.0.0-21-gba890a8+5a4f502a26,21.0.0-23-g9966ff26+03098d1af8,21.0.0-3-g357aad2+8ad216c477,21.0.0-3-g4be5c26+e2614ded12,21.0.0-3-g6d51c4a+4d2fe0280d,21.0.0-3-g7d9da8d+75b29a8a7f,21.0.0-3-gaa929c8+522e0f12c2,21.0.0-3-ge02ed75+4d2fe0280d,21.0.0-4-g3300ddd+e70536a077,21.0.0-4-gc004bbf+eac6615e82,21.0.0-4-gccdca77+f94adcd104,21.0.0-4-gd1c1571+18b81799f9,21.0.0-5-g7b47fff+4d2fe0280d,21.0.0-5-gb155db7+d2632f662b,21.0.0-5-gdf36809+637e4641ee,21.0.0-6-g722ad07+28c848f42a,21.0.0-7-g959bb79+522e0f12c2,21.0.0-7-gfd72ab2+cf01990774,21.0.0-9-g87fb7b8d+e2ab11cdd6,w.2021.04
LSSTDataManagementBasePackage
Isr.cc
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010 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 #include <cmath>
26 
27 #include "lsst/geom.h"
28 #include "lsst/afw/math.h"
30 #include "lsst/ip/isr/isr.h"
31 
32 namespace lsst { namespace ip { namespace isr {
33 
34 template <typename PixelT>
37 {
38  typedef typename afw::image::MaskedImage<PixelT>::x_iterator x_iterator;
39  size_t nPix = 0;
40  for (int y = 0; y != mi.getHeight(); ++y) {
41  for (x_iterator ptr = mi.row_begin(y), end = mi.row_end(y); ptr != end; ++ptr) {
42  if (!(ptr.mask() & allow) && (!std::isfinite(ptr.image()) ||
43  !std::isfinite(ptr.variance()))) {
44  nPix += 1;
45  ptr.mask() |= maskVal;
46  }
47  }
48  }
49  return nPix;
50 }
51 
52 template<typename ImagePixelT, typename FunctionT>
56  double ssize,
57  int sigma
58 ) {
59  typedef afw::image::MaskedImage<ImagePixelT> MaskedImage;
60 
61 
62  const int height = overscan.getHeight();
63  const int width = overscan.getWidth();
64  std::vector<double> values(height);
65  std::vector<double> errors(height);
66  std::vector<double> positions(height);
67 
68  std::vector<double> parameters(overscanFunction->getNParameters(), 0.);
69  std::vector<double> stepsize(overscanFunction->getNParameters(), ssize);
70 
71  for (int y = 0; y < height; ++y) {
79  MaskedImage mi = MaskedImage(overscan, bbox);
81 
82  values[y] = stats.getValue(afw::math::MEAN);
83  errors[y] = stats.getValue(afw::math::STDEV);
84  positions[y] = y;
85 
86  }
88  *overscanFunction,
89  parameters,
90  stepsize,
91  values,
92  errors,
93  positions,
94  sigma
95  );
96 
97  overscanFunction->setParameters(fitResults.parameterList);
98 }
99 
100 std::string between(std::string &s, char ldelim, char rdelim) {
101  std::string::iterator b(s.begin());
102  std::string::iterator e(s.end());
103  std::string::iterator lp;
104  std::string::iterator rp;
105 
107 
108  if((lp = std::find(b, e, ldelim)) != e)
109  if((rp = std::find(++lp, e, rdelim)) != e)
110  result = std::string(lp, rp);
111 
112  return result;
113 }
114 
115 // Explicit instantiations
116 
117 template
119  std::shared_ptr<afw::math::Function1<double> > &overscanFunction,
120  afw::image::MaskedImage<float> const& overscan,
121  double ssize,
122  int sigma);
123 
124 template
126  std::shared_ptr<afw::math::Function1<double> > &overscanFunction,
127  afw::image::MaskedImage<double> const& overscan,
128  double ssize,
129  int sigma);
130 
131 template class CountMaskedPixels<float>;
132 template class CountMaskedPixels<double>;
133 
134 // Function to mask nans in a masked image
139 
140 }}} // namespace lsst::ip::isr
y
int y
Definition: SpanSet.cc:49
lsst::afw::math::FitResults
Results from minimizing a function.
Definition: minimize.h:44
lsst::afw::image::MaskedImage::row_begin
x_iterator row_begin(int y) const
Return an x_iterator to the start of the image.
Definition: MaskedImage.cc:605
std::string
STL class.
std::shared_ptr
STL class.
lsst::afw::image::MaskedImage::MaskedImageIterator
An iterator to the MaskedImage.
Definition: MaskedImage.h:209
lsst::afw::image::MaskedImage::row_end
x_iterator row_end(int y) const
Return an x_iterator to the end of the image.
Definition: MaskedImage.cc:615
lsst::ip::isr::maskNans< float >
template size_t maskNans< float >(afw::image::MaskedImage< float > const &, afw::image::MaskPixel, afw::image::MaskPixel)
std::vector< double >
std::find
T find(T... args)
sigma
afw::table::Key< double > sigma
Definition: GaussianPsf.cc:50
lsst::afw::math::minimize
FitResults minimize(lsst::afw::math::Function1< ReturnT > const &function, std::vector< double > const &initialParameterList, std::vector< double > const &stepSizeList, std::vector< double > const &measurementList, std::vector< double > const &varianceList, std::vector< double > const &xPositionList, double errorDef)
Find the minimum of a function(x)
Definition: minimize.cc:175
isr.h
Implementation of the templated Instrument Signature Removal stage of the nightly LSST Image Processi...
lsst::afw::image::MaskedImage::getWidth
int getWidth() const
Return the number of columns in the image.
Definition: MaskedImage.h:1082
lsst::afw::image::MaskedImage::getHeight
int getHeight() const
Return the number of rows in the image.
Definition: MaskedImage.h:1084
lsst::afw::math::Statistics::getValue
double getValue(Property const prop=NOTHING) const
Return the value of the desired property (if specified in the constructor)
Definition: Statistics.cc:1056
end
int end
Definition: BoundedField.cc:105
lsst::afw::math::makeStatistics
Statistics makeStatistics(lsst::afw::image::Image< Pixel > const &img, lsst::afw::image::Mask< image::MaskPixel > const &msk, int const flags, StatisticsControl const &sctrl=StatisticsControl())
Handle a watered-down front-end to the constructor (no variance)
Definition: Statistics.h:354
math.h
lsst::afw::image::MaskedImage< PixelT >
std::isfinite
T isfinite(T... args)
lsst::afw::math::MEAN
@ MEAN
estimate sample mean
Definition: Statistics.h:67
lsst::ip::isr::maskNans
size_t maskNans(afw::image::MaskedImage< PixelT > const &mi, afw::image::MaskPixel maskVal, afw::image::MaskPixel allow=0)
Mask NANs in an image.
Definition: Isr.cc:35
ptr
uint64_t * ptr
Definition: RangeSet.cc:88
std::int32_t
lsst::ip::isr::between
std::string between(std::string &s, char ldelim, char rdelim)
Definition: Isr.cc:100
result
py::object result
Definition: _schema.cc:429
b
table::Key< int > b
Definition: TransmissionCurve.cc:467
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
lsst::ip::isr::maskNans< double >
template size_t maskNans< double >(afw::image::MaskedImage< double > const &, afw::image::MaskPixel, afw::image::MaskPixel)
lsst::ip::isr::fitOverscanImage
void fitOverscanImage(std::shared_ptr< lsst::afw::math::Function1< FunctionT > > &overscanFunction, lsst::afw::image::MaskedImage< ImagePixelT > const &overscan, double ssize=1., int sigma=1)
Definition: Isr.cc:53
lsst::afw::math::STDEV
@ STDEV
estimate sample standard deviation
Definition: Statistics.h:68
Statistics.h
std::string::begin
T begin(T... args)
lsst::geom::Point< int, 2 >
lsst::geom::Box2I
An integer coordinate rectangle.
Definition: Box.h:55
lsst::afw::math::Statistics
A class to evaluate image statistics.
Definition: Statistics.h:215
lsst::ip::isr::CountMaskedPixels
Definition: isr.h:56
lsst::afw::math::FitResults::parameterList
std::vector< double > parameterList
fit parameters
Definition: minimize.h:48
std::string::end
T end(T... args)
lsst::afw::math::Function1
A Function taking one argument.
Definition: Function.h:202
bbox
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
geom.h