LSSTApplications
10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
|
Functions | |
def | makeGaussianNoiseMaskedImage |
def | imagesDiffer |
def | masksDiffer |
def | maskedImagesDiffer |
def lsst.afw.image.testUtils.imagesDiffer | ( | imageArr1, | |
imageArr2, | |||
skipMaskArr = None , |
|||
rtol = 1.0e-05 , |
|||
atol = 1e-08 |
|||
) |
Compare the pixels of two image arrays; return True if close, False otherwise Inputs: - image1: first image to compare - image2: second image to compare - skipMaskArr: pixels to ignore; nonzero values are skipped - rtol: relative tolerance (see below) - atol: absolute tolerance (see below) rtol and atol are positive, typically very small numbers. The relative difference (rtol * abs(b)) and the absolute difference "atol" are added together to compare against the absolute difference between "a" and "b". Return a string describing the error if the images differ significantly, an empty string otherwise
Definition at line 45 of file testUtils.py.
def lsst.afw.image.testUtils.makeGaussianNoiseMaskedImage | ( | dimensions, | |
sigma, | |||
variance = 1.0 |
|||
) |
Make a gaussian noise MaskedImageF Inputs: - dimensions: dimensions of output array (cols, rows) - sigma; sigma of image plane's noise distribution - variance: constant value for variance plane
Definition at line 30 of file testUtils.py.
def lsst.afw.image.testUtils.maskedImagesDiffer | ( | maskedImageArrSet1, | |
maskedImageArrSet2, | |||
doImage = True , |
|||
doMask = True , |
|||
doVariance = True , |
|||
skipMaskArr = None , |
|||
rtol = 1.0e-05 , |
|||
atol = 1e-08 |
|||
) |
Compare pixels from two masked images Inputs: - maskedImageArrSet1: first masked image to compare as (image, mask, variance) arrays - maskedImageArrSet2: second masked image to compare as (image, mask, variance) arrays - doImage: compare image planes if True - doMask: compare mask planes if True - doVariance: compare variance planes if True - skipMaskArr: pixels to ingore on the image, mask and variance arrays; nonzero values are skipped - rtol: relative tolerance (see below) - atol: absolute tolerance (see below) rtol and atol are positive, typically very small numbers. The relative difference (rtol * abs(b)) and the absolute difference "atol" are added together to compare against the absolute difference between "a" and "b". Return a string describing the error if the images differ significantly, an empty string otherwise
Definition at line 136 of file testUtils.py.
def lsst.afw.image.testUtils.masksDiffer | ( | maskArr1, | |
maskArr2, | |||
skipMaskArr = None |
|||
) |
Compare the pixels of two mask arrays; return True if they match, False otherwise Inputs: - mask1: first image to compare - mask2: second image to compare - skipMaskArr: pixels to ignore; nonzero values are skipped Return a string describing the error if the images differ significantly, an empty string otherwise
Definition at line 105 of file testUtils.py.