lsst.afw gb3a676b8dc+b4feba26a1
Loading...
Searching...
No Matches
Public Member Functions | Protected Attributes | List of all members
lsst.afw.cameraGeom._assembleImage.AmplifierIsolator Class Reference

Public Member Functions

 __init__ (self, amplifier, parent_bbox, parent_detector)
 
 subimage_bbox (self)
 
 transform_subimage (self, subimage)
 
 make_detector (self)
 
 apply (cls, parent_exposure, amplifier)
 

Protected Attributes

 _amplifier
 
 _parent_detector
 
 _parent_amplifier
 
 _is_parent_trimmed
 
 _amplifier_comparison
 

Detailed Description

A class that can extracts single-amplifier subimages from trimmed or
untrimmed assembled images and transforms them to a particular orientation
and offset.

Callers who have a in-memory assembled `lsst.afw.image.Exposure` should
generally just use the `apply` class method.  Other methods can be used to
implement subimage loads of on on-disk images (e.g. formatter classes in
``obs_base``) or obtain subsets from other image classes.

Parameters
----------
amplifier : `Amplifier`
    Amplifier object that identifies the amplifier to load and sets the
    orientation and offset of the returned subimage.
parent_bbox : `lsst.geom.Box2I`
    Bounding box of the assembled parent image.  This must be equal to
    either ``parent_detector.getBBox()`` or
    ``parent_detector.getRawBBox()``; which one is used to determine
    whether the parent image (and hence the amplifier subimages) is
    trimmed.
parent_detector : `Detector`
    Detector object that describes the parent image.

Definition at line 128 of file _assembleImage.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator.__init__ ( self,
amplifier,
parent_bbox,
parent_detector )

Definition at line 153 of file _assembleImage.py.

Member Function Documentation

◆ apply()

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator.apply ( cls,
parent_exposure,
amplifier )
Obtain a single-amplifier `lsst.afw.image.Exposure` subimage that
masquerades as full-detector image for a single-amp detector.

Parameters
----------
parent_exposure : `lsst.afw.image.Exposure`
    Parent image to obtain a subset from.
    `~lsst.afw.image.Exposure.getDetector` must not return `None`.
amplifier : `Amplifier`
    Target amplifier for the subimage.  May differ from the amplifier
    obtained by ``parent_exposure.getDetector()[amplifier.getName()]``
    only by flips and differences in `~Amplifier.getRawXYOffset`.

Returns
-------
subimage : `lsst.afw.image.Exposure`
    Exposure subimage for the target amplifier, with the
    orientation and XY0 described by that amplifier, and a single-amp
    detector holding a copy of that amplifier.

Notes
-----
Because we use the target amplifier's bounding box as the bounding box
of the detector attached to the returned exposure, other exposure
components that are passed through unmodified (e.g. the WCS) should
still be valid for the single-amp exposure after it is trimmed and
"assembled".  Unlike most trimmed+assembled images, however, it will
have a nonzero XY0, and code that (incorrectly!) does not pay attention
to XY0 may break.

Definition at line 246 of file _assembleImage.py.

◆ make_detector()

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator.make_detector ( self)
Create a single-amplifier detector that describes the transformed
subimage.

Returns
-------
detector : `Detector`
    Detector object with a single amplifier, a trimmed bounding box
    equal to the amplifier's trimmed bounding box, and no crosstalk.

Definition at line 228 of file _assembleImage.py.

◆ subimage_bbox()

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator.subimage_bbox ( self)
The bounding box of the target amplifier in the parent image
(`lsst.geom.Box2I`).

Definition at line 178 of file _assembleImage.py.

◆ transform_subimage()

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator.transform_subimage ( self,
subimage )
Transform an already-extracted subimage to match the orientation
and offset of the target amplifier.

Parameters
----------
subimage : image-like
    The subimage to transform; may be any of `lsst.afw.image.Image`,
    `lsst.afw.image.Mask`, `lsst.afw.image.MaskedImage`, and
    `lsst.afw.image.Exposure`.

Returns
-------
transformed : image-like
    Transformed image of the same type as ``subimage``.

Definition at line 187 of file _assembleImage.py.

Member Data Documentation

◆ _amplifier

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator._amplifier
protected

Definition at line 154 of file _assembleImage.py.

◆ _amplifier_comparison

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator._amplifier_comparison
protected

Definition at line 158 of file _assembleImage.py.

◆ _is_parent_trimmed

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator._is_parent_trimmed
protected

Definition at line 157 of file _assembleImage.py.

◆ _parent_amplifier

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator._parent_amplifier
protected

Definition at line 156 of file _assembleImage.py.

◆ _parent_detector

lsst.afw.cameraGeom._assembleImage.AmplifierIsolator._parent_detector
protected

Definition at line 155 of file _assembleImage.py.


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