LSSTApplications  18.1.0
LSSTDataManagementBasePackage
exposureContinued.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2008-2017 LSST/AURA.
4 #
5 # This product includes software developed by the
6 # LSST Project (http://www.lsst.org/).
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <http://www.lsstcorp.org/LegalNotices/>.
21 #
22 
23 __all__ = ["Exposure"]
24 
25 import numpy as np
26 
27 from deprecated.sphinx import deprecated
28 
29 from lsst.utils import TemplateMeta
30 
31 from ..slicing import supportSlicing
32 from ..image.fitsIoWithOptions import imageReadFitsWithOptions, exposureWriteFitsWithOptions
33 from .exposure import ExposureI, ExposureF, ExposureD, ExposureU, ExposureL
34 
35 
36 class Exposure(metaclass=TemplateMeta):
37 
38  def _set(self, index, value, origin):
39  """Set the pixel at the given index to a triple (value, mask, variance).
40 
41  Parameters
42  ----------
43  index : `geom.Point2I`
44  Position of the pixel to assign to.
45  value : `tuple`
46  A tuple of (value, mask, variance) scalars.
47  origin : `ImageOrigin`
48  Coordinate system of ``index`` (`PARENT` or `LOCAL`).
49  """
50  self.maskedImage._set(index, value=value, origin=origin)
51 
52  def _get(self, index, origin):
53  """Return a triple (value, mask, variance) at the given index.
54 
55  Parameters
56  ----------
57  index : `geom.Point2I`
58  Position of the pixel to assign to.
59  origin : `ImageOrigin`
60  Coordinate system of ``index`` (`PARENT` or `LOCAL`).
61  """
62  return self.maskedImage._get(index, origin=origin)
63 
64  def __reduce__(self):
65  from lsst.afw.fits import reduceToFits
66  return reduceToFits(self)
67 
68  def convertF(self):
69  return ExposureF(self, deep=True)
70 
71  def convertD(self):
72  return ExposureD(self, deep=True)
73 
74  def getImage(self):
75  return self.maskedImage.image
76 
77  def setImage(self, image):
78  self.maskedImage.image = image
79 
80  image = property(getImage, setImage)
81 
82  def getMask(self):
83  return self.maskedImage.mask
84 
85  def setMask(self, mask):
86  self.maskedImage.mask = mask
87 
88  mask = property(getMask, setMask)
89 
90  def getVariance(self):
91  return self.maskedImage.variance
92 
93  def setVariance(self, variance):
94  self.maskedImage.variance = variance
95 
96  variance = property(getVariance, setVariance)
97 
98  readFitsWithOptions = classmethod(imageReadFitsWithOptions)
99 
100  writeFitsWithOptions = exposureWriteFitsWithOptions
101 
102  @deprecated(reason="Replaced with getPhotoCalib (will be removed after v18)", category=FutureWarning)
103  def getCalib(self, *args, **kwargs):
104  return self._getCalib(*args, **kwargs)
105 
106  @deprecated(reason="Replaced with setPhotoCalib (will be removed after v18)", category=FutureWarning)
107  def setCalib(self, *args, **kwargs):
108  self._setCalib(*args, **kwargs)
109 
110 
111 Exposure.register(np.int32, ExposureI)
112 Exposure.register(np.float32, ExposureF)
113 Exposure.register(np.float64, ExposureD)
114 Exposure.register(np.uint16, ExposureU)
115 Exposure.register(np.uint64, ExposureL)
116 Exposure.alias("I", ExposureI)
117 Exposure.alias("F", ExposureF)
118 Exposure.alias("D", ExposureD)
119 Exposure.alias("U", ExposureU)
120 Exposure.alias("L", ExposureL)
121 
122 for cls in set(Exposure.values()):
123  supportSlicing(cls)
daf::base::PropertySet * set
Definition: fits.cc:884