|
LSSTApplications
1.1.2+25,10.0+13,10.0+132,10.0+133,10.0+224,10.0+41,10.0+8,10.0-1-g0f53050+14,10.0-1-g4b7b172+19,10.0-1-g61a5bae+98,10.0-1-g7408a83+3,10.0-1-gc1e0f5a+19,10.0-1-gdb4482e+14,10.0-11-g3947115+2,10.0-12-g8719d8b+2,10.0-15-ga3f480f+1,10.0-2-g4f67435,10.0-2-gcb4bc6c+26,10.0-28-gf7f57a9+1,10.0-3-g1bbe32c+14,10.0-3-g5b46d21,10.0-4-g027f45f+5,10.0-4-g86f66b5+2,10.0-4-gc4fccf3+24,10.0-40-g4349866+2,10.0-5-g766159b,10.0-5-gca2295e+25,10.0-6-g462a451+1
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 53 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 38 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 144 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 113 of file testUtils.py.
1.8.5