LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
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: