LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+bd2ed33bd6,g1470d8bcf6+c6d6eb38e2,g14a832a312+9d12ad093c,g2079a07aa2+86d27d4dc4,g2305ad1205+91a32aca49,g295015adf3+88246b6574,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+c34e8be1fa,g487adcacf7+85dcfbcc36,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ea1711114f,g5a732f18d5+53520f316c,g64a986408d+bd2ed33bd6,g858d7b2824+bd2ed33bd6,g8a8a8dda67+585e252eca,g99cad8db69+016a06b37a,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+b6d7b42999,gc120e1dc64+f745648b3a,gc28159a63d+0e5473021a,gcf0d15dbbd+c34e8be1fa,gdaeeff99f8+f9a426f77a,ge6526c86ff+508d0e0a30,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+8d59551888,gf1cff7945b+bd2ed33bd6,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask Class Reference
Inheritance diagram for lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask:

Public Member Functions

 __init__ (self, *args, **kwargs)
 
 run (self, exposure, wcs, modelPsf=None, maxBBox=None, destBBox=None, makeDirect=True, makePsfMatched=False)
 

Public Attributes

 warper
 

Static Public Attributes

 ConfigClass = WarpAndPsfMatchConfig
 

Detailed Description

A task to warp and PSF-match an exposure

Definition at line 46 of file warpAndPsfMatch.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask.__init__ ( self,
* args,
** kwargs )

Definition at line 51 of file warpAndPsfMatch.py.

51 def __init__(self, *args, **kwargs):
52 pipeBase.Task.__init__(self, *args, **kwargs)
53 self.makeSubtask("psfMatch")
54 self.warper = afwMath.Warper.fromConfig(self.config.warp)
55

Member Function Documentation

◆ run()

lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask.run ( self,
exposure,
wcs,
modelPsf = None,
maxBBox = None,
destBBox = None,
makeDirect = True,
makePsfMatched = False )
Warp and optionally PSF-match exposure

Parameters
----------
exposure : :cpp:class: `lsst::afw::image::Exposure`
    Exposure to preprocess.
wcs : :cpp:class:`lsst::afw::image::Wcs`
    Desired WCS of temporary images.
modelPsf : :cpp:class: `lsst::meas::algorithms::KernelPsf` or None
    Target PSF to which to match.
maxBBox : :cpp:class:`lsst::afw::geom::Box2I` or None
    Maximum allowed parent bbox of warped exposure.
    If None then the warped exposure will be just big enough to contain all warped pixels;
    if provided then the warped exposure may be smaller, and so missing some warped pixels;
    ignored if destBBox is not None.
destBBox: :cpp:class: `lsst::afw::geom::Box2I` or None
    Exact parent bbox of warped exposure.
    If None then maxBBox is used to determine the bbox, otherwise maxBBox is ignored.
makeDirect : bool
    Return an exposure that has been only warped?
makePsfMatched : bool
    Return an exposure that has been warped and PSF-matched?

Returns
-------
An lsst.pipe.base.Struct with the following fields:

direct : :cpp:class:`lsst::afw::image::Exposure`
    warped exposure
psfMatched : :cpp:class: `lsst::afw::image::Exposure`
    warped and psf-Matched temporary exposure

Definition at line 56 of file warpAndPsfMatch.py.

57 makeDirect=True, makePsfMatched=False):
58 """Warp and optionally PSF-match exposure
59
60 Parameters
61 ----------
62 exposure : :cpp:class: `lsst::afw::image::Exposure`
63 Exposure to preprocess.
64 wcs : :cpp:class:`lsst::afw::image::Wcs`
65 Desired WCS of temporary images.
66 modelPsf : :cpp:class: `lsst::meas::algorithms::KernelPsf` or None
67 Target PSF to which to match.
68 maxBBox : :cpp:class:`lsst::afw::geom::Box2I` or None
69 Maximum allowed parent bbox of warped exposure.
70 If None then the warped exposure will be just big enough to contain all warped pixels;
71 if provided then the warped exposure may be smaller, and so missing some warped pixels;
72 ignored if destBBox is not None.
73 destBBox: :cpp:class: `lsst::afw::geom::Box2I` or None
74 Exact parent bbox of warped exposure.
75 If None then maxBBox is used to determine the bbox, otherwise maxBBox is ignored.
76 makeDirect : bool
77 Return an exposure that has been only warped?
78 makePsfMatched : bool
79 Return an exposure that has been warped and PSF-matched?
80
81 Returns
82 -------
83 An lsst.pipe.base.Struct with the following fields:
84
85 direct : :cpp:class:`lsst::afw::image::Exposure`
86 warped exposure
87 psfMatched : :cpp:class: `lsst::afw::image::Exposure`
88 warped and psf-Matched temporary exposure
89 """
90 if makePsfMatched and modelPsf is None:
91 raise RuntimeError("makePsfMatched=True, but no model PSF was provided")
92
93 if not makePsfMatched and not makeDirect:
94 self.log.warning("Neither makeDirect nor makePsfMatched requested")
95
96 # Warp PSF before overwriting exposure
97 xyTransform = afwGeom.makeWcsPairTransform(exposure.getWcs(), wcs)
98 psfWarped = WarpedPsf(exposure.getPsf(), xyTransform)
99
100 if makePsfMatched and maxBBox is not None:
101 # grow warped region to provide sufficient area for PSF-matching
102 pixToGrow = 2 * max(self.psfMatch.kConfig.sizeCellX,
103 self.psfMatch.kConfig.sizeCellY)
104 # replace with copy
105 maxBBox = geom.Box2I(maxBBox)
106 maxBBox.grow(pixToGrow)
107
108 with self.timer("warp"):
109 exposure = self.warper.warpExposure(wcs, exposure, maxBBox=maxBBox, destBBox=destBBox)
110 exposure.setPsf(psfWarped)
111
112 if makePsfMatched:
113 try:
114 exposurePsfMatched = self.psfMatch.run(exposure, modelPsf).psfMatchedExposure
115 except Exception as e:
116 exposurePsfMatched = None
117 self.log.info("Cannot PSF-Match: %s", e)
118
119 return pipeBase.Struct(
120 direct=exposure if makeDirect else None,
121 psfMatched=exposurePsfMatched if makePsfMatched else None
122 )
int max
An integer coordinate rectangle.
Definition Box.h:55
std::shared_ptr< TransformPoint2ToPoint2 > makeWcsPairTransform(SkyWcs const &src, SkyWcs const &dst)
A Transform obtained by putting two SkyWcs objects "back to back".
Definition SkyWcs.cc:146

Member Data Documentation

◆ ConfigClass

lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask.ConfigClass = WarpAndPsfMatchConfig
static

Definition at line 49 of file warpAndPsfMatch.py.

◆ warper

lsst.pipe.tasks.warpAndPsfMatch.WarpAndPsfMatchTask.warper

Definition at line 54 of file warpAndPsfMatch.py.


The documentation for this class was generated from the following file: