-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement simple boxcar Background subtraction
* requires exposing some internal methods from Boxcar extract to re-use here * adds and uses +/- offset support to traces * updates the notebook with a basic use-case
- Loading branch information
Showing
4 changed files
with
567 additions
and
83 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
|
||
from dataclasses import dataclass | ||
|
||
import numpy as np | ||
|
||
from specreduce.core import SpecreduceOperation | ||
from specreduce.extract import _ap_weight_image | ||
from specreduce.tracing import FlatTrace | ||
|
||
__all__ = ['Background'] | ||
|
||
|
||
@dataclass | ||
class Background(SpecreduceOperation): | ||
""" | ||
Determine the background from an image for subtraction | ||
Parameters | ||
---------- | ||
image : nddata-compatible image | ||
image with 2-D spectral image data | ||
trace_object : Trace | ||
trace object | ||
width : float | ||
width of extraction aperture in pixels | ||
disp_axis : int | ||
dispersion axis | ||
crossdisp_axis : int | ||
cross-dispersion axis | ||
Returns | ||
------- | ||
spec : `~specutils.Spectrum1D` | ||
The extracted 1d spectrum expressed in DN and pixel units | ||
""" | ||
# required so numpy won't call __rsub__ on individual elements | ||
# https://stackoverflow.com/a/58409215 | ||
__array_ufunc__ = None | ||
|
||
def __init__(self, image, trace_object, separation=5, width=2, | ||
disp_axis=1, crossdisp_axis=0): | ||
""" | ||
Extract the 1D spectrum using the boxcar method. | ||
Parameters | ||
---------- | ||
image : nddata-compatible image | ||
image with 2-D spectral image data | ||
trace_object : Trace or int | ||
trace object or an integer to use a FloatTrace | ||
separation: float | ||
separation between trace and extraction apertures on each | ||
side of the trace | ||
width : float | ||
width of each background aperture in pixels | ||
disp_axis : int | ||
dispersion axis | ||
crossdisp_axis : int | ||
cross-dispersion axis | ||
""" | ||
if isinstance(trace_object, (int, float)): | ||
trace_object = FlatTrace(image, trace_object) | ||
|
||
# TODO: this check can be removed if/when implemented as a check in FlatTrace | ||
if isinstance(trace_object, FlatTrace): | ||
if trace_object.trace_pos < 1: | ||
raise ValueError('trace_object.trace_pos must be >= 1') | ||
|
||
bkg_wimage = _ap_weight_image( | ||
trace_object-separation, | ||
width, | ||
disp_axis, | ||
crossdisp_axis, | ||
image.shape) | ||
|
||
bkg_wimage += _ap_weight_image( | ||
trace_object+separation, | ||
width, | ||
disp_axis, | ||
crossdisp_axis, | ||
image.shape) | ||
|
||
self.image = image | ||
self.bkg_wimage = bkg_wimage | ||
self.bkg_array = np.average(image, weights=self.bkg_wimage, axis=0) | ||
|
||
def bkg_image(self, image=None): | ||
""" | ||
Expose the background tiled to the dimension of ``image``. | ||
Parameters | ||
---------- | ||
image : nddata-compatible image or None | ||
image with 2-D spectral image data. If None, will use ``image`` passed | ||
to extract the background. | ||
Returns | ||
------- | ||
array with same shape as ``image``. | ||
""" | ||
if image is None: | ||
image = self.image | ||
|
||
return np.tile(self.bkg_array, (image.shape[0], 1)) | ||
|
||
def sub_image(self, image=None): | ||
""" | ||
Subtract the computed background from ``image``. | ||
Parameters | ||
---------- | ||
image : nddata-compatible image or None | ||
image with 2-D spectral image data. If None, will use ``image`` passed | ||
to extract the background. | ||
Returns | ||
------- | ||
array with same shape as ``image`` | ||
""" | ||
if image is None: | ||
image = self.image | ||
|
||
return image - self.bkg_image(image) | ||
|
||
def __rsub__(self, image): | ||
""" | ||
Subtract the background from an image. | ||
""" | ||
return self.sub_image(image) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters