LSST Applications g04dff08e69+fafbcb10e2,g0d33ba9806+3d21495239,g0fba68d861+2ea2a6c4b0,g1e78f5e6d3+b3e27b8ebc,g1ec0fe41b4+f536777771,g1fd858c14a+ae46bc2a71,g35bb328faa+fcb1d3bbc8,g4af146b050+9c38a215af,g4d2262a081+154bb484c1,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+3d21495239,g6273192d42+8013d063df,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+04106995ce,g8852436030+54b48a5987,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+3d21495239,g989de1cb63+4086c0989b,g9d31334357+3d21495239,g9f33ca652e+83205baa3c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+85d1f90f4c,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+d11454dffd,gcf25f946ba+54b48a5987,gd6cbbdb0b4+af3c3595f5,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+1b29a75088,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf67bdafdda+4086c0989b,v29.0.0.rc6
LSST Data Management Base Package
|
Public Member Functions | |
__init__ (self, gutter=3, background=0, mode="square") | |
reset (self) | |
append (self, image, label=None, ctype=None) | |
makeMosaic (self, images=None, display="deferToFrame", mode=None, background=None, title="") | |
setGutter (self, gutter) | |
setBackground (self, background) | |
setMode (self, mode) | |
getBBox (self, ix, iy=None) | |
drawLabels (self, labels=None, display="deferToFrame", frame=None) | |
nImage (self) | |
Public Attributes | |
gutter = gutter | |
background = background | |
int | xsize = 0 |
int | ysize = 0 |
list | images = [] |
list | labels = [] |
int | nImage = 0: |
nx = 1 | |
ny = nx, ny | |
mode = mode | |
A class to handle mosaics of one or more identically-sized images (or `~lsst.afw.image.Mask` or `~lsst.afw.image.MaskedImage`) Notes ----- Note that this mosaic is a patchwork of the input images; if you want to make a mosaic of a set images of the sky, you probably want to use the coadd code Examples -------- .. code-block:: py m = Mosaic() m.setGutter(5) m.setBackground(10) m.setMode("square") # the default; other options are "x" or "y" mosaic = m.makeMosaic(im1, im2, im3) # build the mosaic display = afwDisplay.getDisplay() display.mtv(mosaic) # display it m.drawLabels(["Label 1", "Label 2", "Label 3"], display) # label the panels # alternative way to build a mosaic images = [im1, im2, im3] labels = ["Label 1", "Label 2", "Label 3"] mosaic = m.makeMosaic(images) display.mtv(mosaic) m.drawLabels(labels, display) # Yet another way to build a mosaic (no need to build the images/labels lists) for i in range(len(images)): m.append(images[i], labels[i]) # You may optionally include a colour, e.g. afwDisplay.YELLOW, as a third argument mosaic = m.makeMosaic() display.mtv(mosaic) m.drawLabels(display=display) Or simply: .. code-block:: py mosaic = m.makeMosaic(display=display) You can return the (ix, iy)th (or nth) bounding box (in pixels) with `getBBox()`
lsst.afw.display.utils.Mosaic.__init__ | ( | self, | |
gutter = 3, | |||
background = 0, | |||
mode = "square" ) |
Definition at line 120 of file utils.py.
lsst.afw.display.utils.Mosaic.append | ( | self, | |
image, | |||
label = None, | |||
ctype = None ) |
Add an image to the list of images to be mosaiced Returns ------- index the index of this image (may be passed to `getBBox()`) Notes ----- Set may be cleared with ``Mosaic.reset()``
Definition at line 134 of file utils.py.
lsst.afw.display.utils.Mosaic.drawLabels | ( | self, | |
labels = None, | |||
display = "deferToFrame", | |||
frame = None ) |
Draw the list labels at the corners of each panel. Notes ----- If labels is None, use the ones specified by ``Mosaic.append()``
Definition at line 303 of file utils.py.
lsst.afw.display.utils.Mosaic.getBBox | ( | self, | |
ix, | |||
iy = None ) |
Get the BBox for a panel Parameters ---------- ix : `int` If ``iy`` is not `None`, this is the x coordinate of the panel. If ``iy`` is `None`, this is the number of the panel. iy : `int`, optional The y coordinate of the panel.
Definition at line 285 of file utils.py.
lsst.afw.display.utils.Mosaic.makeMosaic | ( | self, | |
images = None, | |||
display = "deferToFrame", | |||
mode = None, | |||
background = None, | |||
title = "" ) |
Return a mosaic of all the images provided. If none are specified, use the list accumulated with `Mosaic.append()`. If display is specified, display the mosaic
Definition at line 155 of file utils.py.
lsst.afw.display.utils.Mosaic.nImage | ( | self | ) |
lsst.afw.display.utils.Mosaic.reset | ( | self | ) |
lsst.afw.display.utils.Mosaic.setBackground | ( | self, | |
background ) |
lsst.afw.display.utils.Mosaic.setGutter | ( | self, | |
gutter ) |
lsst.afw.display.utils.Mosaic.setMode | ( | self, | |
mode ) |
Set mosaicing mode. Parameters ---------- mode : {"square", "x", "y"} Valid options: square Make mosaic as square as possible x Make mosaic one image high y Make mosaic one image wide
Definition at line 264 of file utils.py.