InsertFakesTask#
- class lsst.pipe.tasks.insertFakes.InsertFakesTask(*args, **kwargs)#
Bases:
PipelineTaskInsert 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.
InsertFakesTaskhas five functions that make images of the fake sources and then add them to the image.addPixCoordsUse the WCS information to add the pixel coordinates of each source.
mkFakeGalsimGalaxiesUse Galsim to make fake double sersic galaxies for each set of galaxy parameters in the input file.
mkFakeStarsUse the PSF information from the image to make a fake star using the magnitude information from the input file.
cleanCatRemove 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.
addFakeSourcesAdd 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_injectiontasks.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
runmethod.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#
- image
lsst.afw.image.exposure.exposure.ExposureF The image into which the fake sources should be added
- fakeImages
typing.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.
- sourceType
str The type (star/galaxy) of fake sources input
Returns#
image :
lsst.afw.image.exposure.exposure.ExposureFNotes#
Uses the x, y information in the
fakeCatto position an image of the fake interpolated onto the pixel grid of the image. Sets theFAKEmask plane for the pixels added with the fake source.- image
- addPixCoords(fakeCat, image)#
Add pixel coordinates to the catalog of fakes.
Parameters#
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- image
lsst.afw.image.exposure.exposure.ExposureF The image into which the fake sources should be added
Returns#
fakeCat :
pandas.core.frame.DataFrame- fakeCat
- 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#
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- starCheckVal
str,bytesorint The value that is set in the sourceType column to specifiy an object is a star.
Returns#
- fakeCat
pandas.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 :
strpixelScale :floatpsf :lsst.meas.extensions.psfex.psfexPsf.PsfexPsfThe PSF information to use to make the PSF images
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- photoCalib
lsst.afw.image.photoCalib.PhotoCalib Photometric calibration to be used to calibrate the fake sources
Yields#
- galImages
generator A generator of tuples of
lsst.afw.image.exposure.exposure.ExposureFandlsst.geom.Point2Dof 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
fakeCatare 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.
- fakeCat
- mkFakeStars(fakeCat, band, photoCalib, psf, image)#
Make fake stars based off the properties in the fakeCat.
Parameters#
band :
strpsf :lsst.meas.extensions.psfex.psfexPsf.PsfexPsfThe PSF information to use to make the PSF images
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- image
lsst.afw.image.exposure.exposure.ExposureF The image into which the fake sources should be added
- photoCalib
lsst.afw.image.photoCalib.PhotoCalib Photometric calibration to be used to calibrate the fake sources
Yields#
- starImages
generator A generator of tuples of
lsst.afw.image.ImageFof fake stars andlsst.geom.Point2Dof 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
calibFluxRadiusshould be set to this same radius so that we can normalize the PSF model to the correct instrumental flux within calibFluxRadius.- fakeCat
- processImagesForInsertion(fakeCat, wcs, psf, photoCalib, band, pixelScale)#
Process images from files into the format needed for insertion.
Parameters#
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- wcs
lsst.afw.geom.skyWcs.skyWcs.SkyWc WCS to use to add fake sources
- psf
lsst.meas.algorithms.coaddPsf.coaddPsf.CoaddPsfor lsst.meas.extensions.psfex.psfexPsf.PsfexPsfThe PSF information to use to make the PSF images
- photoCalib
lsst.afw.image.photoCalib.PhotoCalib Photometric calibration to be used to calibrate the fake sources
- band
str The filter band that the observation was taken in.
- pixelScale
float The pixel scale of the image the sources are to be added to.
Returns#
- galImages
list A list of tuples of
lsst.afw.image.exposure.exposure.ExposureFandlsst.geom.Point2Dof their locations. For sources labelled as galaxy.- starImages
list A list of tuples of
lsst.afw.image.exposure.exposure.ExposureFandlsst.geom.Point2Dof 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.
- fakeCat
- run(fakeCat, image, wcs, photoCalib)#
Add fake sources to an image.
Parameters#
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- image
lsst.afw.image.exposure.exposure.ExposureF The image into which the fake sources should be added
- wcs
lsst.afw.geom.SkyWcs WCS to use to add fake sources
- photoCalib
lsst.afw.image.photoCalib.PhotoCalib Photometric calibration to be used to calibrate the fake sources
Returns#
- resultStruct
lsst.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
Fakemask plane to the image which is then set byaddFakeSourcesto mark where fake sources have been added. Uses the information in thefakeCatto 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.
- fakeCat
- runQuantum(butlerQC, inputRefs, outputRefs)#
Do butler IO and transform to provide in memory objects for tasks
runmethod.Parameters#
- butlerQC
QuantumContext A butler which is specialized to operate in the context of a
lsst.daf.butler.Quantum.- inputRefs
InputQuantizedConnection Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnectionsclass. The values of these attributes are thelsst.daf.butler.DatasetRefobjects associated with the defined input/prerequisite connections.- outputRefs
OutputQuantizedConnection Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnectionsclass. The values of these attributes are thelsst.daf.butler.DatasetRefobjects associated with the defined output connections.
- butlerQC
- trimFakeCat(fakeCat, image)#
Trim the fake cat to the size of the input image plus trimBuffer padding.
fakeCatmust be processed with addPixCoords before using this method.Parameters#
- fakeCat
pandas.core.frame.DataFrame The catalog of fake sources to be input
- image
lsst.afw.image.exposure.exposure.ExposureF The image into which the fake sources should be added
Returns#
- fakeCat
pandas.core.frame.DataFrame The original fakeCat trimmed to the area of the image
- fakeCat