Hello,
When I try to use the singleFrameMeasurement task to do analysis on an input image, the output catalog gives an ID for each source that is just an ascending integer. For instance, the input image contains a ‘db_id’ for each source that range from the thousands (stars) to 10 digit numbers (galaxies + tile info): [2214322509, 2213221225, 2213832765, …, 5284, 5286, 5288]
However, the output catalog contains a vector of IDs that are merely integers ranging from 1 to the number of sources:
id_measured: [ 1 2 3 …, 12650 12651 12652]
I’ve been trying to look through the DM stack code to figure out where I can modify the code so that the parent ID is propagated through to the output catalog, but I’ve had no luck with that. My current “solution” to this involves a double loop over the input and output sources in order to match them, but it takes a long time to run. I was hoping for a better and quicker solution than that.
Here’s my use of the singleFrameMeasurement task:
exposure = loadData(infile)
schema = afwTable.SourceTable.makeMinimalSchema()
config = SourceDetectionTask.ConfigClass()
config.thresholdPolarity = "both"
config.background.isNanSafe = True
config.thresholdValue = 0.5
detectionTask = SourceDetectionTask(config=config, schema=schema)
print config
config = SingleFrameMeasurementTask.ConfigClass()
config.plugins.names.clear()
for plugin in ["base_SdssCentroid", "base_SdssShape", "base_CircularApertureFlux", "base_GaussianFlux", "base_PsfFlux", "base_ClassificationExtendedness"]:
config.plugins.names.add(plugin)
print "fluxRatio: ", config.algorithms['base_ClassificationExtendedness'].fluxRatio
config.algorithms['base_ClassificationExtendedness'].fluxRatio = 0.9375
measureTask = SingleFrameMeasurementTask(schema, config=config)
tab = afwTable.SourceTable.make(schema)
result = detectionTask.run(tab, exposure)
sources = result.sources
for i in range(len(sources)):
record = sources[i]
idparent = record.getParent()
print "idparent: ", idparent
measureTask.run(sources, exposure)
sources.writeFits(outfile)
Could someone point out where the stack code must be modified? I’ve had no luck searching through the code or the documentation and was hoping that someone would be able to quickly answer my question.
Thanks,
Aaron