LSSTApplications  19.0.0-16-gf391218+0d4bdb7e99,20.0.0-11-g973f35b+fc3da11c03,20.0.0-18-g2b8c1f54+f8fc1aa9fb,20.0.0-2-g103fe59+1a747c5cf5,20.0.0-2-g1367e85+b8fe48c8a0,20.0.0-2-g7f82c8f+cb8155b8e8,20.0.0-2-g8dde007+aaa4e16c0f,20.0.0-2-ga326454+cb8155b8e8,20.0.0-2-ga51b5d4+6432c6fd8d,20.0.0-2-gde069b7+44dbdb3492,20.0.0-2-gfc62afb+b8fe48c8a0,20.0.0-20-g54e6697de+ce03d725a7,20.0.0-22-g54e2caa+e2d4a7822a,20.0.0-25-g5eafb0f+f4a3e7a5aa,20.0.0-28-g73474ed+96410ea1f8,20.0.0-3-g5242d73+b8fe48c8a0,20.0.0-3-ga63a54e+af87b3138b,20.0.0-30-g597c966+cf8eea114e,20.0.0-4-g2909d54+37efb4748c,20.0.0-4-g35ce6d5+f4a3e7a5aa,20.0.0-4-g45278ab+d529cf1a41,20.0.0-4-g4bc9b9f+a7376eab67,20.0.0-4-g66bcc37+f4a3e7a5aa,20.0.0-4-ge17e5af+b8fe48c8a0,20.0.0-4-gecfae73+77584f1b13,20.0.0-4-gf910f65+37efb4748c,20.0.0-46-gd70f10e1+f17cbaf3d1,20.0.0-5-g8f08a60+4fac22bdb7,20.0.0-5-ga885a99+c1363b8d99,20.0.0-5-gc738bc1+47717dd73f,20.0.0-5-gfbfe500+d529cf1a41,20.0.0-6-gd222c45+88b21af515,20.0.0-6-gdef485e+46cd8289a4,20.0.0-7-gaa929c8+96410ea1f8,20.0.0-74-g0218c7a+939693069d,20.0.0-8-g5dd23de+1834535a4e,20.0.0-8-ge712728+fb4ad641b9,20.0.0-9-g5051ac2+d529cf1a41,w.2020.48-1-gdf601d2
LSSTDataManagementBasePackage
ImagePca.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 
33 #include "lsst/afw.h"
35 
36 namespace lsst {
37 namespace meas {
38 namespace algorithms {
39 
40 template <typename ImageT>
42  Super::analyze();
43 
44  typename Super::ImageList const &eImageList = this->getEigenImages();
45  typename Super::ImageList::const_iterator iter = eImageList.begin(), end = eImageList.end();
46  for (size_t i = 0; iter != end; ++i, ++iter) {
47  PTR(ImageT) eImage = *iter;
48 
49  /*
50  * Normalise eigenImages to have a maximum of 1.0. For n > 0 they
51  * (should) have mean == 0, so we can't use that to normalize
52  */
54  double const min = stats.getValue(afw::math::MIN);
55  double const max = stats.getValue(afw::math::MAX);
56 
57  double const extreme = (fabs(min) > max) ? min : max;
58  if (extreme != 0.0) {
59  *eImage /= extreme;
60  }
61 
62  /*
63  * Estimate and subtract the mean background level from the i > 0
64  * eigen images; if we don't do that then PSF variation can get mixed
65  * with subtle variations in the background and potentially amplify
66  * them disasterously.
67  *
68  * It is not at all clear that doing this is a good idea; it'd be
69  * better to get the sky level right in the first place.
70  */
71  if (i > 0 && _border > 0) { /* not the zeroth KL component */
72  int const height = eImage->getHeight();
73  int const width = eImage->getWidth();
74  double background;
75  if (2 * _border >= std::min(height, width)) {
76  // _Border consumes the entire image
79  .getValue();
80  } else {
81  // Use the median of the edge pixels
82 
83  // If ImageT is a MaskedImage, unpack the Image
86 
87  int const nEdge = width * height - (width - 2 * _border) * (height - 2 * _border);
88  std::vector<double> edgePixels(nEdge);
89 
90  std::vector<double>::iterator bi = edgePixels.begin();
91 
92  typedef typename afw::image::GetImage<ImageT>::type::x_iterator imIter;
93  int y = 0;
94  for (; y != _border; ++y) { // Bottom border of eImage
95  for (imIter ptr = eImageIm->row_begin(y), end = eImageIm->row_end(y); ptr != end;
96  ++ptr, ++bi) {
97  *bi = *ptr;
98  }
99  }
100  for (; y != height - _border; ++y) { // Left and right borders of eImage
101  for (imIter ptr = eImageIm->row_begin(y), end = eImageIm->x_at(_border, y); ptr != end;
102  ++ptr, ++bi) {
103  *bi = *ptr;
104  }
105  for (imIter ptr = eImageIm->x_at(width - _border, y), end = eImageIm->row_end(y);
106  ptr != end; ++ptr, ++bi) {
107  *bi = *ptr;
108  }
109  }
110  for (; y != height; ++y) { // Top border of eImage
111  for (imIter ptr = eImageIm->row_begin(y), end = eImageIm->row_end(y); ptr != end;
112  ++ptr, ++bi) {
113  *bi = *ptr;
114  }
115  }
116  assert(std::distance(edgePixels.begin(), bi) == nEdge);
117 
119  }
120  *eImage -= background;
121  }
122  }
123 }
124 
125 #define INSTANTIATE_IMAGE(IMAGE) template class PsfImagePca<IMAGE>;
126 
127 #define INSTANTIATE(TYPE) \
128  INSTANTIATE_IMAGE(afw::image::Image<TYPE>); \
129  INSTANTIATE_IMAGE(afw::image::MaskedImage<TYPE>);
130 
131 INSTANTIATE(float);
132 
133 } // namespace algorithms
134 } // namespace meas
135 } // namespace lsst
y
int y
Definition: SpanSet.cc:49
std::shared_ptr
STL class.
afw.h
PTR
#define PTR(...)
Definition: base.h:41
std::vector< std::shared_ptr< ImageT > >
std::distance
T distance(T... args)
lsst::meas::algorithms::PsfImagePca::analyze
virtual void analyze()
Generate eigenimages that are normalised and background-subtracted.
Definition: ImagePca.cc:41
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
INSTANTIATE
#define INSTANTIATE(TYPE)
Definition: ImagePca.cc:127
lsst.pipe.drivers.visualizeVisit.background
background
Definition: visualizeVisit.py:37
ptr
uint64_t * ptr
Definition: RangeSet.cc:88
max
int max
Definition: BoundedField.cc:104
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
std::min
T min(T... args)
std::vector::begin
T begin(T... args)
lsst::afw::math::MIN
@ MIN
estimate sample minimum
Definition: Statistics.h:76
min
int min
Definition: BoundedField.cc:103
lsst::afw::math::Statistics
Definition: Statistics.h:215
lsst::afw::math::MAX
@ MAX
estimate sample maximum
Definition: Statistics.h:77
lsst::afw::image::GetImage
Definition: MaskedImage.h:1315
std::vector::end
T end(T... args)
ImagePca.h
Class for doing PCA on PSF stars.
astshim.fitsChanContinued.iter
def iter(self)
Definition: fitsChanContinued.py:88
lsst::afw::math::MEDIAN
@ MEDIAN
estimate sample median
Definition: Statistics.h:70