Loading [MathJax]/extensions/tex2jax.js
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
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
estimateBackground.py
1 #!/usr/bin/env python
2 
3 #
4 # This file is part of afw.
5 #
6 # Developed for the LSST Data Management System.
7 # This product includes software developed by the LSST Project
8 # (https://www.lsst.org).
9 # See the COPYRIGHT file at the top-level directory of this distribution
10 # for details of code ownership.
11 #
12 # This program is free software: you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program. If not, see <https://www.gnu.org/licenses/>.
24 #
25 
26 import os
27 import lsst.utils
28 import lsst.afw.image as afwImage
29 import lsst.afw.math as afwMath
30 import lsst.afw.display.ds9 as ds9
31 
32 try:
33  display
34 except NameError:
35  display = not False
36 
37 
38 
39 
40 def getImage():
41  imagePath = os.path.join(lsst.utils.getPackageDir("afwdata"),
42  "DC3a-Sim", "sci", "v5-e0", "v5-e0-c011-a00.sci.fits")
43  return afwImage.MaskedImageF(imagePath)
44 
45 
46 def simpleBackground(image):
47  binsize = 128
48  nx = int(image.getWidth()/binsize) + 1
49  ny = int(image.getHeight()/binsize) + 1
50  bctrl = afwMath.BackgroundControl(nx, ny)
51 
52  bkgd = afwMath.makeBackground(image, bctrl)
53 
54  image -= bkgd.getImageF(afwMath.Interpolate.NATURAL_SPLINE)
55 
56  return bkgd
57 
58 
59 def complexBackground(image):
60  MaskPixel = afwImage.MaskPixel
61  binsize = 128
62  nx = int(image.getWidth()/binsize) + 1
63  ny = int(image.getHeight()/binsize) + 1
64 
66  sctrl.setNumSigmaClip(3)
67  sctrl.setNumIter(4)
68  sctrl.setAndMask(afwImage.Mask[MaskPixel].getPlaneBitMask(["INTRP",
69  "EDGE"]))
70  sctrl.setNoGoodPixelsMask(afwImage.Mask[MaskPixel].getPlaneBitMask("BAD"))
71  sctrl.setNanSafe(True)
72  if False:
73  sctrl.setWeighted(True)
74  sctrl.setCalcErrorFromInputVariance(True)
75 
76  bctrl = afwMath.BackgroundControl(nx, ny, sctrl, afwMath.MEANCLIP)
77 
78  bkgd = afwMath.makeBackground(image, bctrl)
79 
80  statsImage = bkgd.getStatsImage()
81  ds9.mtv(statsImage.getVariance())
82 
83  return bkgd
84 
85 
86 def main():
87  image = getImage()
88 
89  if display:
90  ds9.mtv(image, frame=0)
91 
92  bkgd = simpleBackground(image)
93  image = getImage()
94  bkgd = complexBackground(image)
95 
96  if display:
97  ds9.mtv(image, frame=1)
98  ds9.mtv(bkgd.getStatsImage(), frame=2)
99 
100  order = 2
102  afwMath.ApproximateControl.CHEBYSHEV, order, order)
103  approx = bkgd.getApproximate(actrl)
104 
105  approx.getImage()
106  approx.getMaskedImage()
107  approx.getImage(order - 1)
108 
109 
110 
111 if __name__ == '__main__':
112  main()