LSST Applications g1653933729+a8ce1bb630,g1a997c3884+a8ce1bb630,g1b393d1bc7+82476ad7c1,g28da252d5a+3d3e1c4204,g2bbee38e9b+97aa061eef,g2bc492864f+97aa061eef,g2cdde0e794+3ad5f2bb52,g2f1216ac18+8615c5b65f,g3156d2b45e+07302053f8,g347aa1857d+97aa061eef,g35bb328faa+a8ce1bb630,g3a166c0a6a+97aa061eef,g3e281a1b8c+693a468c5f,g4005a62e65+17cd334064,g414038480c+56e3b84a79,g41af890bb2+e5200c8fd9,g65afce507f+0106b0cffc,g80478fca09+e9b577042c,g82479be7b0+a273c6d073,g858d7b2824+b43ab392d2,g9125e01d80+a8ce1bb630,ga5288a1d22+3199fccd69,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gbb4f38f987+b43ab392d2,gc28159a63d+97aa061eef,gcd3f1c0c93+2e89b03209,gcf0d15dbbd+a0207f3e71,gd35896b8e2+3e8344a67c,gda3e153d99+b43ab392d2,gda6a2b7d83+a0207f3e71,gdaeeff99f8+1711a396fd,ge2409df99d+e6e587e663,ge33fd446bb+b43ab392d2,ge79ae78c31+97aa061eef,gf0baf85859+5daf287408,gf5289d68f6+c4f2338d90,gfda6b12a05+3bcad770a9,w.2024.42
LSST Data Management Base Package
Loading...
Searching...
No Matches
Classes | Functions
lsst.meas.algorithms.gp_interpolation Namespace Reference

Classes

class  GaussianProcessTreegp
 
class  InterpolateOverDefectGaussianProcess
 

Functions

 updateMaskFromArray (mask, bad_pixel, interpBit)
 
 median_with_mad_clipping (data, mad_multiplier=2.0)
 

Function Documentation

◆ median_with_mad_clipping()

lsst.meas.algorithms.gp_interpolation.median_with_mad_clipping ( data,
mad_multiplier = 2.0 )
Calculate the median of the input data after applying Median Absolute Deviation (MAD) clipping.

The MAD clipping method is used to remove outliers from the data. The median of the data is calculated,
and then the MAD is calculated as the median absolute deviation from the median. The data is then clipped
by removing values that are outside the range of median +/- mad_multiplier * MAD. Finally, the median of
the clipped data is returned.

Parameters:
-----------
data : `np.array`
    Input data array.
mad_multiplier : `float`, optional
    Multiplier for the MAD value used for clipping. Default is 2.0.

Returns:
--------
median_clipped : `float`
    Median value of the clipped data.

Examples:
---------
>>> data = [1, 2, 3, 4, 5, 100]
>>> median_with_mad_clipping(data)
3.5

Definition at line 60 of file gp_interpolation.py.

60def median_with_mad_clipping(data, mad_multiplier=2.0):
61 """
62 Calculate the median of the input data after applying Median Absolute Deviation (MAD) clipping.
63
64 The MAD clipping method is used to remove outliers from the data. The median of the data is calculated,
65 and then the MAD is calculated as the median absolute deviation from the median. The data is then clipped
66 by removing values that are outside the range of median +/- mad_multiplier * MAD. Finally, the median of
67 the clipped data is returned.
68
69 Parameters:
70 -----------
71 data : `np.array`
72 Input data array.
73 mad_multiplier : `float`, optional
74 Multiplier for the MAD value used for clipping. Default is 2.0.
75
76 Returns:
77 --------
78 median_clipped : `float`
79 Median value of the clipped data.
80
81 Examples:
82 ---------
83 >>> data = [1, 2, 3, 4, 5, 100]
84 >>> median_with_mad_clipping(data)
85 3.5
86 """
87 median = np.median(data)
88 mad = np.median(np.abs(data - median))
89 clipping_range = mad_multiplier * mad
90 clipped_data = np.clip(data, median - clipping_range, median + clipping_range)
91 median_clipped = np.median(clipped_data)
92 return median_clipped
93
94

◆ updateMaskFromArray()

lsst.meas.algorithms.gp_interpolation.updateMaskFromArray ( mask,
bad_pixel,
interpBit )
Update the mask array with the given bad pixels.

Parameters
----------
mask : `lsst.afw.image.MaskedImage`
    The mask image to update.
bad_pixel : `np.array`
    An array-like object containing the coordinates of the bad pixels.
    Each row should contain the x and y coordinates of a bad pixel.
interpBit : `int`
    The bit value to set for the bad pixels in the mask.

Definition at line 37 of file gp_interpolation.py.

37def updateMaskFromArray(mask, bad_pixel, interpBit):
38 """
39 Update the mask array with the given bad pixels.
40
41 Parameters
42 ----------
43 mask : `lsst.afw.image.MaskedImage`
44 The mask image to update.
45 bad_pixel : `np.array`
46 An array-like object containing the coordinates of the bad pixels.
47 Each row should contain the x and y coordinates of a bad pixel.
48 interpBit : `int`
49 The bit value to set for the bad pixels in the mask.
50 """
51 x0 = mask.getX0()
52 y0 = mask.getY0()
53 for row in bad_pixel:
54 x = int(row[0] - x0)
55 y = int(row[1] - y0)
56 mask.array[y, x] |= interpBit
57 # TO DO --> might be better: mask.array[int(bad_pixel[:,1]-y0), int(bad_pixel[:,0]-x)] |= interpBit
58
59