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-37332: Add task to re-interpolate mask planes #800

Merged
merged 2 commits into from
Jun 30, 2023
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
60 changes: 60 additions & 0 deletions tests/test_reinterpolate_pixels.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# This file is part of pipe_tasks.
#
# Developed for the LSST Data Management System.
# This product includes software developed by the LSST Project
# (https://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import unittest

import lsst.ip.isr as ipIsr
import lsst.utils.tests
from lsst.meas.algorithms import ReinterpolatePixelsConfig, ReinterpolatePixelsTask


class TestReinterpolatePixels(lsst.utils.tests.TestCase):
"""Test that ReinterpolatePixelsTask for meas_algorithms produces expected
outputs.
"""

def setUp(self):
self.inputExp = ipIsr.isrMock.TrimmedRawMock().run()
self.mi = self.inputExp.getMaskedImage()

def test_reinterpolate_pixels(self):
"""Expect number of interpolated pixels to be non-zero."""
ipIsr.makeThresholdMask(self.mi, 200, growFootprints=2, maskName="SAT")
config = ReinterpolatePixelsConfig()
config.maskNameList = ["SAT"]
task = ReinterpolatePixelsTask(config=config)
task.run(self.inputExp)
interpMaskedImage = self.inputExp.getMaskedImage()
numBit = ipIsr.countMaskedPixels(interpMaskedImage, "INTRP")
self.assertEqual(numBit, 40800)


class TestMemory(lsst.utils.tests.MemoryTestCase):
pass


def setup_module(module):
lsst.utils.tests.init()


if __name__ == "__main__":
lsst.utils.tests.init()
unittest.main()