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 | Protected Member Functions | List of all members
lsst.afw.cameraGeom.utils.ButlerImage Class Reference
Inheritance diagram for lsst.afw.cameraGeom.utils.ButlerImage:
lsst.afw.cameraGeom.utils.FakeImageDataSource

Public Member Functions

 __init__ (self, butler=None, type="raw", isTrimmed=True, verbose=False, background=numpy.nan, callback=None, *args, **kwargs)
 
 getCcdImage (self, ccd, imageFactory=afwImage.ImageF, binSize=1, asMaskedImage=False)
 

Public Attributes

 isTrimmed
 
 type
 
 butler
 
 kwargs
 
 isRaw
 
 background
 
 verbose
 
 callback
 

Protected Member Functions

 _prepareImage (self, ccd, im, binSize, allowRotate=True)
 

Detailed Description

A class to return an Image of a given Ccd using the butler.

Parameters
----------
butler : `lsst.daf.butler.Butler` or `None`
    The butler to use. If `None`, an empty image is returned. Assumes that
    the instrument was specified during butler construction or is included
    in the ``kwargs`` parameter.
type : `str`
    The type of image to read (e.g. raw, bias, flat, calexp).
isTrimmed : `bool`
    If true, the showCamera command expects to be given trimmed images.
verbose : `bool`
    Be chatty (in particular, log any error messages from the butler)?
background : `float`
    The value of any pixels that lie outside the CCDs.
callback : callable
    A function called with (image, detector, butler) for every image, which
    returns the image to be displayed (e.g. rawCallback). The image must
    be of the correct size, allowing for the value of isTrimmed.
*args : `list`
    Passed to the base class constructor.
**kwargs : `dict`
    Passed to the butler.

Notes
-----
You can define a short named function as a callback::

    def callback(im, ccd, imageSource):
        return cameraGeom.utils.rawCallback(im, ccd, imageSource, correctGain=True)

Definition at line 399 of file utils.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.afw.cameraGeom.utils.ButlerImage.__init__ ( self,
butler = None,
type = "raw",
isTrimmed = True,
verbose = False,
background = numpy.nan,
callback = None,
* args,
** kwargs )

Reimplemented from lsst.afw.cameraGeom.utils.FakeImageDataSource.

Definition at line 432 of file utils.py.

434 callback=None, *args, **kwargs):
435 super().__init__(*args)
436 self.isTrimmed = isTrimmed
437 self.type = type
438 self.butler = butler
439 self.kwargs = kwargs
440 self.isRaw = False
441 self.background = background
442 self.verbose = verbose
443 self.callback = callback
444

Member Function Documentation

◆ _prepareImage()

lsst.afw.cameraGeom.utils.ButlerImage._prepareImage ( self,
ccd,
im,
binSize,
allowRotate = True )
protected

Definition at line 445 of file utils.py.

445 def _prepareImage(self, ccd, im, binSize, allowRotate=True):
446 if binSize > 1:
447 im = afwMath.binImage(im, binSize)
448
449 if allowRotate:
451 im, ccd.getOrientation().getNQuarter())
452
453 return im
454
std::shared_ptr< ImageT > rotateImageBy90(ImageT const &image, int nQuarter)
Rotate an image by an integral number of quarter turns.
std::shared_ptr< ImageT > binImage(ImageT const &inImage, int const binX, int const binY, lsst::afw::math::Property const flags=lsst::afw::math::MEAN)
Definition binImage.cc:44

◆ getCcdImage()

lsst.afw.cameraGeom.utils.ButlerImage.getCcdImage ( self,
ccd,
imageFactory = afwImage.ImageF,
binSize = 1,
asMaskedImage = False )
Return an image of the specified ccd, and also the (possibly updated) ccd

Reimplemented from lsst.afw.cameraGeom.utils.FakeImageDataSource.

Definition at line 455 of file utils.py.

455 def getCcdImage(self, ccd, imageFactory=afwImage.ImageF, binSize=1, asMaskedImage=False):
456 """Return an image of the specified ccd, and also the (possibly updated) ccd"""
457
458 log = _LOG.getChild("ButlerImage")
459
460 if self.isTrimmed:
461 bbox = ccd.getBBox()
462 else:
463 bbox = calcRawCcdBBox(ccd)
464
465 im = None
466 if self.butler is not None:
467 err = None
468 try:
469 im = self.butler.get(self.type, detector=ccd.getId(), **self.kwargs)
470 except FitsError as e:
471 err = IOError(e.args[0].split('\n')[0]) # It's a very chatty error
472 except Exception as e: # try a different dataId
473 err = e
474 else:
475 ccd = im.getDetector() # possibly modified by assembleCcdTask
476
477 if im:
478 if asMaskedImage:
479 im = im.getMaskedImage()
480 else:
481 im = im.getMaskedImage().getImage()
482 else:
483 if self.verbose:
484 # Lost by jupyterlab.
485 print(f"Reading {ccd.getId()}: {err}")
486
487 log.warning("Reading %s: %s", ccd.getId(), err)
488
489 if im is None:
490 return self._prepareImage(ccd, imageFactory(*bbox.getDimensions()), binSize), ccd
491
492 if self.type == "raw":
493 if hasattr(im, 'convertF'):
494 im = im.convertF()
495 if False and self.callback is None: # we need to trim the raw image
496 self.callback = rawCallback
497
498 allowRotate = True
499 if self.callback:
500 try:
501 im = self.callback(im, ccd, imageSource=self)
502 except Exception as e:
503 if self.verbose:
504 log.error("callback failed: %s", e)
505 im = imageFactory(*bbox.getDimensions())
506 else:
507 allowRotate = False # the callback was responsible for any rotations
508
509 return self._prepareImage(ccd, im, binSize, allowRotate=allowRotate), ccd
510
511

Member Data Documentation

◆ background

lsst.afw.cameraGeom.utils.ButlerImage.background

Definition at line 441 of file utils.py.

◆ butler

lsst.afw.cameraGeom.utils.ButlerImage.butler

Definition at line 438 of file utils.py.

◆ callback

lsst.afw.cameraGeom.utils.ButlerImage.callback

Definition at line 443 of file utils.py.

◆ isRaw

lsst.afw.cameraGeom.utils.ButlerImage.isRaw

Definition at line 440 of file utils.py.

◆ isTrimmed

lsst.afw.cameraGeom.utils.ButlerImage.isTrimmed

Definition at line 436 of file utils.py.

◆ kwargs

lsst.afw.cameraGeom.utils.ButlerImage.kwargs

Definition at line 439 of file utils.py.

◆ type

lsst.afw.cameraGeom.utils.ButlerImage.type

Definition at line 437 of file utils.py.

◆ verbose

lsst.afw.cameraGeom.utils.ButlerImage.verbose

Definition at line 442 of file utils.py.


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