LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
detectOnlyFakes.py
Go to the documentation of this file.
1 import lsst.pex.config as pexConfig
2 import lsst.pipe.base as pipeBase
3 import lsst.afw.table as afwTable
4 import lsst.meas.algorithms as measAlg
5 import lsst.afw.detection as afwDetect
6 
7 # WARNING: if you want to add configuration variables (maybe how close you are
8 # to a fake object), you will need to deal with the fact that the configuration
9 # for a retargeted subtask (like this one) blows away any overrides in setDefault of
10 # the parent task (processCoadd in this case) and, it seems any camera specific
11 # overrides in $OBS_SUBARU/config/hsc/processCcd.py.
12 # See https://dev.lsstcorp.org/trac/ticket/2282 for more details
13 # I think you need something like cmdLineTask.applyOverrides to deal with this
14 
15 
16 class OnlyFakesDetectionConfig(measAlg.SourceDetectionTask.ConfigClass):
17  dummyVar = pexConfig.Field(doc='Dummy config variable, does nothing',
18  dtype=bool, default=True)
19 
20 
21 class OnlyFakesDetectionTask(measAlg.SourceDetectionTask):
22  """This task serves culls the source list to sources which overlap with fakes"""
23 
24  # WARNING: we are using the parent configuration class instead of the
25  # OnlyFakesDetectionConfig to avoid having to fix overridden config parameters
26  # from processCoaddConfig.setDefaults and from the camera-specific $OBS_SUBARU/config
27  ConfigClass = measAlg.SourceDetectionConfig
28 
29  def makeSourceCatalog(self, table, exposure, doSmooth=True, sigma=None, clearMask=True):
30  if self.negativeFlagKey is not None and self.negativeFlagKey not in table.getSchema():
31  raise ValueError("Table has incorrect Schema")
32 
33  # detect the footprints as usual
34  fpSets = self.detectFootprints(exposure=exposure, doSmooth=doSmooth, sigma=sigma,
35  clearMask=clearMask)
36 
37  # ignore objects whose footprints do NOT overlap with the 'FAKE' mask
38  mask = exposure.getMaskedImage().getMask()
39  fakebit = mask.getPlaneBitMask('FAKE')
40  fpPos = fpSets.positive.getFootprints()
41  removes = []
42  for i_foot, foot in enumerate(fpPos):
43  footTmp = afwDetect.Footprint(foot)
44  footTmp.intersectMask(mask, fakebit)
45  if footTmp.getArea() == foot.getArea():
46  removes.append(i_foot)
47  removes = sorted(removes, reverse=True)
48  for r in removes:
49  del fpPos[r]
50 
51  self.log.info("Found %d sources near fake footprints" % len(fpPos))
52 
53  fpSets.numPos = len(fpPos)
54  if fpSets.negative:
55  del fpSets.negative.getFootprints()[0:]
56  fpSets.negative = None
57 
58  # make sources
59  sources = afwTable.SourceCatalog(table)
60  table.preallocate(fpSets.numPos)
61  if fpSets.positive:
62  fpSets.positive.makeSources(sources)
63 
64  return pipeBase.Struct(sources=sources, fpSets=fpSets)
def makeSourceCatalog(self, table, exposure, doSmooth=True, sigma=None, clearMask=True)
Fit spatial kernel using approximate fluxes for candidates, and solving a linear system of equations...
Class to describe the properties of a detected object from an image.
Definition: Footprint.h:62