1 __all__ = [
"findCosmicRays"]
6 from .cr
import _findCosmicRays
10 """Find cosmic rays in an image.""" 11 if isinstance(ps, pexPolicy.Policy):
12 warnings.warn(
"findCosmicRays acceptance of Policy is deprecated. Use PropertySet " 13 "(support will be removed after v19.0)",
14 category=FutureWarning, stacklevel=2)
15 ps = ps.asPropertySet()
16 return _findCosmicRays(image, psf, bkgd, ps, keep)
19 findCosmicRays.__doc__ = _findCosmicRays.__doc__
def findCosmicRays(image, psf, bkgd, ps, keep=False)