LSSTApplications  18.0.0+68,19.0.0+5,19.0.0+56,19.0.0+65,19.0.0+9,19.0.0-1-g20d9b18+24,19.0.0-1-g49a97f9+3,19.0.0-1-g5549ca4+4,19.0.0-1-g8c57eb9+24,19.0.0-1-g9a028c0+1,19.0.0-1-ga72da6b+3,19.0.0-1-gb77924a+1,19.0.0-1-gbfe0924+52,19.0.0-1-gd0f30f5+1,19.0.0-1-ge272bc4+24,19.0.0-1-gefe1d0d+38,19.0.0-11-g57ef05f+3,19.0.0-11-g90346d2c+1,19.0.0-13-g8db0348+6,19.0.0-14-g706b86db4+2,19.0.0-15-g9352a82,19.0.0-16-g224c443+1,19.0.0-16-gdc8ce7c+3,19.0.0-2-g0d9f9cd+61,19.0.0-2-g260436e+42,19.0.0-2-g361aba8+1,19.0.0-2-g9675b69+3,19.0.0-2-gde8e5e3+3,19.0.0-2-gff6972b+8,19.0.0-3-ga642a0f,19.0.0-4-g33ce3a3+1,19.0.0-4-gac56cce+3,19.0.0-4-gb4013cc+1,19.0.0-4-gdb4f201+1,19.0.0-41-g13db8fbc+3,19.0.0-43-gbcf6a3c+2,19.0.0-6-gdd6eb13,19.0.0-7-g686a884+4,w.2020.15
LSSTDataManagementBasePackage
Functions
lsst.meas.algorithms.crLib Namespace Reference

Functions

def findCosmicRays (image, psf, bkgd, ps, keep=False)
 

Function Documentation

◆ findCosmicRays()

def lsst.meas.algorithms.crLib.findCosmicRays (   image,
  psf,
  bkgd,
  ps,
  keep = False 
)
Find cosmic rays in an image.

Definition at line 9 of file crLib.py.

9 def findCosmicRays(image, psf, bkgd, ps, keep=False):
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)
17 
18 
19 findCosmicRays.__doc__ = _findCosmicRays.__doc__
20 
a container for holding hierarchical configuration data in memory.
Definition: Policy.h:167
def findCosmicRays(image, psf, bkgd, ps, keep=False)
Definition: crLib.py:9