LSST Applications g0f08755f38+82efc23009,g12f32b3c4e+e7bdf1200e,g1653933729+a8ce1bb630,g1a0ca8cf93+50eff2b06f,g28da252d5a+52db39f6a5,g2bbee38e9b+37c5a29d61,g2bc492864f+37c5a29d61,g2cdde0e794+c05ff076ad,g3156d2b45e+41e33cbcdc,g347aa1857d+37c5a29d61,g35bb328faa+a8ce1bb630,g3a166c0a6a+37c5a29d61,g3e281a1b8c+fb992f5633,g414038480c+7f03dfc1b0,g41af890bb2+11b950c980,g5fbc88fb19+17cd334064,g6b1c1869cb+12dd639c9a,g781aacb6e4+a8ce1bb630,g80478fca09+72e9651da0,g82479be7b0+04c31367b4,g858d7b2824+82efc23009,g9125e01d80+a8ce1bb630,g9726552aa6+8047e3811d,ga5288a1d22+e532dc0a0b,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+37c5a29d61,gcf0d15dbbd+2acd6d4d48,gd7358e8bfb+778a810b6e,gda3e153d99+82efc23009,gda6a2b7d83+2acd6d4d48,gdaeeff99f8+1711a396fd,ge2409df99d+6b12de1076,ge79ae78c31+37c5a29d61,gf0baf85859+d0a5978c5a,gf3967379c6+4954f8c433,gfb92a5be7c+82efc23009,gfec2e1e490+2aaed99252,w.2024.46
LSST Data Management Base Package
Loading...
Searching...
No Matches
piffPsf.py
Go to the documentation of this file.
1# This file is part of meas_extensions_piff.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <https://www.gnu.org/licenses/>.
21
22__all__ = ["PiffPsf"]
23
24import pickle
25import piff
26from packaging.version import Version
27import numpy as np
28from lsst.afw.typehandling import StorableHelperFactory
29from lsst.meas.algorithms import ImagePsf
30from lsst.afw.image import Image
31from lsst.geom import Box2I, Point2I, Extent2I, Point2D
32
33
35 _factory = StorableHelperFactory(
36 "lsst.meas.extensions.piff.piffPsf",
37 "PiffPsf"
38 )
39
40 def __init__(self, width, height, piffResult):
41 assert width == height
42 ImagePsf.__init__(self)
43 self.width = width
44 self.height = height
45 self.dimensions = Extent2I(width, height)
46 self._piffResult = piffResult
47 self._averagePosition = None
48
49 @property
50 def piffResult(self):
51 return self._piffResult
52
53 # Storable overrides
54
55 def isPersistable(self):
56 return True
57
59 return "PiffPsf"
60
62 return "lsst.meas.extensions.piff.piffPsf"
63
64 def _write(self):
65 return pickle.dumps((self.width, self.height, self._piffResult))
66
67 @staticmethod
68 def _read(pkl):
69 width, height, piffResult = pickle.loads(pkl)
70 # We need to do surgery on pickles created with earlier versions of
71 # piff when using piff version 1.4 or later.
72 if Version(piff.version) >= Version("1.4"):
73 if not hasattr(piffResult, "_num"):
74 piffResult._num = None
75 piffResult.model._num = None
76 piffResult.model._fit_flux = None
77 piffResult.interp._num = None
78 return PiffPsf(width, height, piffResult)
79
80 # ImagePsf overrides
81
82 def __deepcopy__(self, meta=None):
83 return PiffPsf(self.width, self.height, self._piffResult)
84
85 def resized(self, width, height):
86 assert width == height
87 return PiffPsf(width, height, self._piffResult)
88
89 def _doComputeImage(self, position, color):
90 return self._doImage(position, center=None)
91
92 def _doComputeKernelImage(self, position, color):
93 return self._doImage(position, center=True)
94
95 def _doComputeBBox(self, position, color):
96 return self._doBBox(Point2I(0, 0), center=True)
97
99 if self._averagePosition is None:
100 x = np.mean([star.image_pos.x for star in self._piffResult.stars])
101 y = np.mean([star.image_pos.y for star in self._piffResult.stars])
102 self._averagePosition = Point2D(x, y)
103 return self._averagePosition
104
105 # Internal private methods
106
107 def _doImage(self, position, center):
108 # Follow Piff conventions for center.
109 # None => draw as if star at position
110 # True => draw in center of image
111 gsimg = self._piffResult.draw(
112 position.x, position.y, stamp_size=self.width, center=center
113 )
114 bbox = self._doBBox(position, center)
115 img = Image(bbox, dtype=np.float64)
116 img.array[:] = gsimg.array
117 img.array /= np.sum(img.array)
118 return img
119
120 def _doBBox(self, position, center):
121 origin = -(self.dimensions//2)
122 if center is None:
123 origin = Point2I(position) + origin
124 return Box2I(Point2I(origin), self.dimensions)
virtual lsst::geom::Point2D getAveragePosition() const
Return the average position of the stars used to construct the Psf.
Definition Psf.cc:189
A class to represent a 2-dimensional array of pixels.
Definition Image.h:51
virtual bool isPersistable() const noexcept
Return true if this particular object can be persisted using afw::table::io.
An integer coordinate rectangle.
Definition Box.h:55
An intermediate base class for Psfs that use an image representation.
Definition ImagePsf.h:40
_doComputeKernelImage(self, position, color)
Definition piffPsf.py:92
__init__(self, width, height, piffResult)
Definition piffPsf.py:40
_doComputeBBox(self, position, color)
Definition piffPsf.py:95
_doComputeImage(self, position, color)
Definition piffPsf.py:89