Skip to content

Major Changes

Jeremy Kubica edited this page Sep 19, 2022 · 5 revisions

Release Notes and Major Changes

Per-Image PSFs (PR 137, Sept 19th, 2022)

Pull request #137 (pending) will change how PSFs are passed into the kbmod code. Instead of passing PSFs in where they are used (e.g. addObject and maskObject) the code takes in a per-image PSF during the creation of each LayeredImage. This allows users to specify PSFs for different times and spatial regions (one per image). For example, the creation of new LayeredImages should be changed from:

im = kb.layered_image(\"image2\", 100, 100, 5.0, 25.0, 0.0)

to:

im = kb.layered_image(\"image2\", 100, 100, 5.0, 25.0, 0.0, p)

Clone this wiki locally