Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-29522 Add spatially varying ZOGY subtraction #510

Merged
merged 1 commit into from
May 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions python/lsst/pipe/tasks/imageDifference.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,12 @@ class ImageDifferenceConfig(pipeBase.PipelineTaskConfig,
"If this option is enabled, then detection.thresholdValue should be set to 5.0 (rather than the "
"default of 5.5).",
)
# Old style ImageMapper grid. ZogyTask has its own grid option
doSpatiallyVarying = pexConfig.Field(
dtype=bool,
default=False,
doc="If using Zogy or A&L decorrelation, perform these on a grid across the "
"image in order to allow for spatial variations"
doc="Perform A&L decorrelation on a grid across the "
"image in order to allow for spatial variations. Zogy does not use this option."
)
detection = pexConfig.ConfigurableField(
target=SourceDetectionTask,
Expand Down