InsertFakesTask#

class lsst.pipe.tasks.insertFakes.InsertFakesTask(*args, **kwargs)#

Bases: PipelineTask

Insert fake objects into images.

Add fake stars and galaxies to the given image, read in through the dataRef. Galaxy parameters are read in from the specified file and then modelled using galsim.

InsertFakesTask has five functions that make images of the fake sources and then add them to the image.

addPixCoords

Use the WCS information to add the pixel coordinates of each source.

mkFakeGalsimGalaxies

Use Galsim to make fake double sersic galaxies for each set of galaxy parameters in the input file.

mkFakeStars

Use the PSF information from the image to make a fake star using the magnitude information from the input file.

cleanCat

Remove rows of the input fake catalog which have half light radius, of either the bulge or the disk, that are 0. Also removes rows that have Sersic index outside of galsim’s allowed paramters. If the config option sourceSelectionColName is set then this function limits the catalog of input fakes to only those which are True in this column.

addFakeSources

Add the fake sources to the image.

Deprecated since version v28.0: This task will be removed in v28.0 as it is replaced by source_injection tasks.

Methods Summary

addFakeSources(image, fakeImages, sourceType)

Add the fake sources to the given image

addPixCoords(fakeCat, image)

Add pixel coordinates to the catalog of fakes.

cleanCat(fakeCat, starCheckVal)

Remove rows from the fakes catalog which have HLR = 0 for either the buldge or disk component,

mkFakeGalsimGalaxies(fakeCat, band, ...)

Make images of fake galaxies using GalSim.

mkFakeStars(fakeCat, band, photoCalib, psf, ...)

Make fake stars based off the properties in the fakeCat.

processImagesForInsertion(fakeCat, wcs, psf, ...)

Process images from files into the format needed for insertion.

run(fakeCat, image, wcs, photoCalib)

Add fake sources to an image.

runQuantum(butlerQC, inputRefs, outputRefs)

Do butler IO and transform to provide in memory objects for tasks run method.

trimFakeCat(fakeCat, image)

Trim the fake cat to the size of the input image plus trimBuffer padding.

Methods Documentation

addFakeSources(image, fakeImages, sourceType)#

Add the fake sources to the given image

Parameters#

imagelsst.afw.image.exposure.exposure.ExposureF

The image into which the fake sources should be added

fakeImagestyping.Iterator [tuple [‘lsst.afw.image.ImageF`, lsst.geom.Point2d]]

An iterator of tuples that contains (or generates) images of fake sources, and the locations they are to be inserted at.

sourceTypestr

The type (star/galaxy) of fake sources input

Returns#

image : lsst.afw.image.exposure.exposure.ExposureF

Notes#

Uses the x, y information in the fakeCat to position an image of the fake interpolated onto the pixel grid of the image. Sets the FAKE mask plane for the pixels added with the fake source.

addPixCoords(fakeCat, image)#

Add pixel coordinates to the catalog of fakes.

Parameters#

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

imagelsst.afw.image.exposure.exposure.ExposureF

The image into which the fake sources should be added

Returns#

fakeCat : pandas.core.frame.DataFrame

cleanCat(fakeCat, starCheckVal)#
Remove rows from the fakes catalog which have HLR = 0 for either the buldge or disk component,

also remove galaxies that have Sersic index outside the galsim min and max allowed (0.3 <= n <= 6.2).

Parameters#

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

starCheckValstr, bytes or int

The value that is set in the sourceType column to specifiy an object is a star.

Returns#

fakeCatpandas.core.frame.DataFrame

The input catalog of fake sources but with the bad objects removed

mkFakeGalsimGalaxies(fakeCat, band, photoCalib, pixelScale, psf, image)#

Make images of fake galaxies using GalSim.

Parameters#

band : str pixelScale : float psf : lsst.meas.extensions.psfex.psfexPsf.PsfexPsf

The PSF information to use to make the PSF images

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

photoCaliblsst.afw.image.photoCalib.PhotoCalib

Photometric calibration to be used to calibrate the fake sources

Yields#

galImagesgenerator

A generator of tuples of lsst.afw.image.exposure.exposure.ExposureF and lsst.geom.Point2D of their locations.

Notes#

Fake galaxies are made by combining two sersic profiles, one for the bulge and one for the disk. Each component has an individual sersic index (n), a, b and position angle (PA). The combined profile is then convolved with the PSF at the specified x, y position on the image.

The names of the columns in the fakeCat are configurable and are the column names from the University of Washington simulations database as default. For more information see the doc strings attached to the config options.

See mkFakeStars doc string for an explanation of calibration to instrumental flux.

mkFakeStars(fakeCat, band, photoCalib, psf, image)#

Make fake stars based off the properties in the fakeCat.

Parameters#

band : str psf : lsst.meas.extensions.psfex.psfexPsf.PsfexPsf

The PSF information to use to make the PSF images

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

imagelsst.afw.image.exposure.exposure.ExposureF

The image into which the fake sources should be added

photoCaliblsst.afw.image.photoCalib.PhotoCalib

Photometric calibration to be used to calibrate the fake sources

Yields#

starImagesgenerator

A generator of tuples of lsst.afw.image.ImageF of fake stars and lsst.geom.Point2D of their locations.

Notes#

To take a given magnitude and translate to the number of counts in the image we use photoCalib.magnitudeToInstFlux, which returns the instrumental flux for the given calibration radius used in the photometric calibration step. Thus calibFluxRadius should be set to this same radius so that we can normalize the PSF model to the correct instrumental flux within calibFluxRadius.

processImagesForInsertion(fakeCat, wcs, psf, photoCalib, band, pixelScale)#

Process images from files into the format needed for insertion.

Parameters#

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

wcslsst.afw.geom.skyWcs.skyWcs.SkyWc

WCS to use to add fake sources

psflsst.meas.algorithms.coaddPsf.coaddPsf.CoaddPsf or
lsst.meas.extensions.psfex.psfexPsf.PsfexPsf

The PSF information to use to make the PSF images

photoCaliblsst.afw.image.photoCalib.PhotoCalib

Photometric calibration to be used to calibrate the fake sources

bandstr

The filter band that the observation was taken in.

pixelScalefloat

The pixel scale of the image the sources are to be added to.

Returns#

galImageslist

A list of tuples of lsst.afw.image.exposure.exposure.ExposureF and lsst.geom.Point2D of their locations. For sources labelled as galaxy.

starImageslist

A list of tuples of lsst.afw.image.exposure.exposure.ExposureF and lsst.geom.Point2D of their locations. For sources labelled as star.

Notes#

The input fakes catalog needs to contain the absolute path to the image in the band that is being used to add images to. It also needs to have the R.A. and declination of the fake source in radians and the sourceType of the object.

run(fakeCat, image, wcs, photoCalib)#

Add fake sources to an image.

Parameters#

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

imagelsst.afw.image.exposure.exposure.ExposureF

The image into which the fake sources should be added

wcslsst.afw.geom.SkyWcs

WCS to use to add fake sources

photoCaliblsst.afw.image.photoCalib.PhotoCalib

Photometric calibration to be used to calibrate the fake sources

Returns#

resultStructlsst.pipe.base.struct.Struct

contains : image : lsst.afw.image.exposure.exposure.ExposureF

Notes#

Adds pixel coordinates for each source to the fakeCat and removes objects with bulge or disk half light radius = 0 (if config.doCleanCat = True).

Adds the Fake mask plane to the image which is then set by addFakeSources to mark where fake sources have been added. Uses the information in the fakeCat to make fake galaxies (using galsim) and fake stars, using the PSF models from the PSF information for the image. These are then added to the image and the image with fakes included returned.

The galsim galaxies are made using a double sersic profile, one for the bulge and one for the disk, this is then convolved with the PSF at that point.

runQuantum(butlerQC, inputRefs, outputRefs)#

Do butler IO and transform to provide in memory objects for tasks run method.

Parameters#

butlerQCQuantumContext

A butler which is specialized to operate in the context of a lsst.daf.butler.Quantum.

inputRefsInputQuantizedConnection

Datastructure whose attribute names are the names that identify connections defined in corresponding PipelineTaskConnections class. The values of these attributes are the lsst.daf.butler.DatasetRef objects associated with the defined input/prerequisite connections.

outputRefsOutputQuantizedConnection

Datastructure whose attribute names are the names that identify connections defined in corresponding PipelineTaskConnections class. The values of these attributes are the lsst.daf.butler.DatasetRef objects associated with the defined output connections.

trimFakeCat(fakeCat, image)#

Trim the fake cat to the size of the input image plus trimBuffer padding.

fakeCat must be processed with addPixCoords before using this method.

Parameters#

fakeCatpandas.core.frame.DataFrame

The catalog of fake sources to be input

imagelsst.afw.image.exposure.exposure.ExposureF

The image into which the fake sources should be added

Returns#

fakeCatpandas.core.frame.DataFrame

The original fakeCat trimmed to the area of the image