LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Public Member Functions | Static Public Attributes | List of all members
lsst.ip.diffim.imageMapReduce.ImageMapper Class Reference
Inheritance diagram for lsst.ip.diffim.imageMapReduce.ImageMapper:
lsst.ip.diffim.imageDecorrelation.DecorrelateALKernelMapper

Public Member Functions

def run (self, subExposure, expandedSubExposure, fullBBox, **kwargs)
 

Static Public Attributes

 ConfigClass = ImageMapperConfig
 

Detailed Description

Abstract base class for any task that is to be
used as `ImageMapReduceConfig.mapper`.

Notes
-----
An `ImageMapper` is responsible for processing individual
sub-exposures in its `run` method, which is called from
`ImageMapReduceTask.run`. `run` may return a processed new
sub-exposure which can be be "stitched" back into a new resulting
larger exposure (depending on the configured
`ImageReducer`); otherwise if it does not return an
lsst.afw.image.Exposure, then the
`ImageReducer.config.reducer.reduceOperation`
should be set to 'none' and the result will be propagated
as-is.

Definition at line 89 of file imageMapReduce.py.

Member Function Documentation

◆ run()

def lsst.ip.diffim.imageMapReduce.ImageMapper.run (   self,
  subExposure,
  expandedSubExposure,
  fullBBox,
**  kwargs 
)
Perform operation on `subExposure`.

To be implemented by subclasses. See class docstring for more
details. This method is given the `subExposure` which
is to be operated upon, and an `expandedSubExposure` which
will contain `subExposure` with additional surrounding
pixels. This allows for, for example, convolutions (which
should be performed on `expandedSubExposure`), to prevent the
returned sub-exposure from containing invalid pixels.

This method may return a new, processed sub-exposure which can
be be "stitched" back into a new resulting larger exposure
(depending on the paired, configured `ImageReducer`);
otherwise if it does not return an lsst.afw.image.Exposure, then the
`ImageReducer.config.mapper.reduceOperation`
should be set to 'none' and the result will be propagated
as-is.

Parameters
----------
subExposure : `lsst.afw.image.Exposure`
    the sub-exposure upon which to operate
expandedSubExposure : `lsst.afw.image.Exposure`
    the expanded sub-exposure upon which to operate
fullBBox : `lsst.geom.Box2I`
    the bounding box of the original exposure
kwargs :
    additional keyword arguments propagated from
    `ImageMapReduceTask.run`.

Returns
-------
result : `lsst.pipe.base.Struct`
    A structure containing the result of the `subExposure` processing,
    which may itself be of any type. See above for details. If it is an
    `lsst.afw.image.Exposure` (processed sub-exposure), then the name in
    the Struct should be 'subExposure'. This is implemented here as a
    pass-through example only.

Definition at line 110 of file imageMapReduce.py.

110  def run(self, subExposure, expandedSubExposure, fullBBox, **kwargs):
111  """Perform operation on `subExposure`.
112 
113  To be implemented by subclasses. See class docstring for more
114  details. This method is given the `subExposure` which
115  is to be operated upon, and an `expandedSubExposure` which
116  will contain `subExposure` with additional surrounding
117  pixels. This allows for, for example, convolutions (which
118  should be performed on `expandedSubExposure`), to prevent the
119  returned sub-exposure from containing invalid pixels.
120 
121  This method may return a new, processed sub-exposure which can
122  be be "stitched" back into a new resulting larger exposure
123  (depending on the paired, configured `ImageReducer`);
124  otherwise if it does not return an lsst.afw.image.Exposure, then the
125  `ImageReducer.config.mapper.reduceOperation`
126  should be set to 'none' and the result will be propagated
127  as-is.
128 
129  Parameters
130  ----------
131  subExposure : `lsst.afw.image.Exposure`
132  the sub-exposure upon which to operate
133  expandedSubExposure : `lsst.afw.image.Exposure`
134  the expanded sub-exposure upon which to operate
135  fullBBox : `lsst.geom.Box2I`
136  the bounding box of the original exposure
137  kwargs :
138  additional keyword arguments propagated from
139  `ImageMapReduceTask.run`.
140 
141  Returns
142  -------
143  result : `lsst.pipe.base.Struct`
144  A structure containing the result of the `subExposure` processing,
145  which may itself be of any type. See above for details. If it is an
146  `lsst.afw.image.Exposure` (processed sub-exposure), then the name in
147  the Struct should be 'subExposure'. This is implemented here as a
148  pass-through example only.
149  """
150  return pipeBase.Struct(subExposure=subExposure)
151 
152 
def run(self, coaddExposures, bbox, wcs)
Definition: getTemplate.py:603

Member Data Documentation

◆ ConfigClass

lsst.ip.diffim.imageMapReduce.ImageMapper.ConfigClass = ImageMapperConfig
static

Definition at line 106 of file imageMapReduce.py.


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