Skip to content

Commit

Permalink
add gaussian process as an option in interpolateOverDefects.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa authored and PFLeget committed Aug 5, 2024
1 parent a44b09e commit 07e4cb9
Show file tree
Hide file tree
Showing 7 changed files with 700 additions and 17 deletions.
2 changes: 1 addition & 1 deletion include/lsst/meas/algorithms/Interp.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Defect : public afw::image::DefectBase {
};

template <typename MaskedImageT>
void interpolateOverDefects(MaskedImageT &image, afw::detection::Psf const &psf,
void interpolateOverDefectsOld(MaskedImageT &image, afw::detection::Psf const &psf,
std::vector<Defect::Ptr> &badList, double fallbackValue = 0.0,
bool useFallbackValueAtEdge = false);

Expand Down
3 changes: 3 additions & 0 deletions python/lsst/meas/algorithms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,15 @@
from .accumulator_mean_stack import *
from .scaleVariance import *
from .noise_covariance import *
from .gp_interpolation import *
from .interp import *
from .reinterpolate_pixels import *
from .setPrimaryFlags import *
from .coaddBoundedField import *
from .variance_plane import *
from .maskStreaks import *
from .normalizedCalibrationFlux import *
from .gp_interpolation import *

from .version import *

Expand Down
Loading

0 comments on commit 07e4cb9

Please sign in to comment.