%pylab nbagg
Populating the interactive namespace from numpy and matplotlib
import pyFAI
WARNING:pyFAI.utils:Exception No module named 'fftw3': FFTw3 not available. Falling back on Scipy
wos = pyFAI.detector_factory("/users/kieffer/workspace-400/pyFAI/doc/source/usage/tutorial/Distortion/WOS.h5")
print(wos)
NexusDetector detector from NeXus file: /users/kieffer/workspace-400/pyFAI/doc/source/usage/tutorial/Distortion/WOS.h5 PixelSize= 1.300e-04, 1.300e-04 m
img = "/users/kieffer/workspace-400/pyFAI/doc/source/usage/tutorial/Distortion/WOS.edf"
import fabio
raw = fabio.open(img).data
imshow(numpy.log(raw))
/scisoft/users/jupyter/jupy34/lib/python3.4/site-packages/ipykernel/__main__.py:4: RuntimeWarning: divide by zero encountered in log /scisoft/users/jupyter/jupy34/lib/python3.4/site-packages/ipykernel/__main__.py:4: RuntimeWarning: invalid value encountered in log
<matplotlib.image.AxesImage at 0x7f7480ec2b38>
from pyFAI.distortion import Distortion
dis = Distortion(wos, resize=True, method="csr")
res = dis.correct(raw)
imshow(numpy.log(res))
/scisoft/users/jupyter/jupy34/lib/python3.4/site-packages/ipykernel/__main__.py:2: RuntimeWarning: divide by zero encountered in log from ipykernel import kernelapp as app
<matplotlib.image.AxesImage at 0x7f747fac2fd0>
dis.lut
(array([ 1.15139604e-01, 4.69919890e-08, 8.81283939e-01, ..., 3.66451927e-02, 3.94637942e-01, 3.73821147e-02], dtype=float32), array([ 0, 1154, 0, ..., 690090, 690091, 690091], dtype=int32), array([ 0, 0, 0, ..., 2721379, 2721379, 2721379], dtype=int32))
import scipy.sparse.linalg
CSR = scipy.sparse.csr_matrix(dis.lut)
from scipy.sparse import linalg
%time B = linalg.lsmr(CSR, res.ravel())
CPU times: user 6.33 s, sys: 0 ns, total: 6.33 s Wall time: 6.34 s
imshow(numpy.log(B[0].reshape(raw.shape)))
/scisoft/users/jupyter/jupy34/lib/python3.4/site-packages/ipykernel/__main__.py:1: RuntimeWarning: divide by zero encountered in log if __name__ == '__main__': /scisoft/users/jupyter/jupy34/lib/python3.4/site-packages/ipykernel/__main__.py:1: RuntimeWarning: invalid value encountered in log if __name__ == '__main__':
<matplotlib.image.AxesImage at 0x7f742ff2a6d8>
b= B[0].reshape(raw.shape)
imshow(b-raw)
(b-raw).mean()
0.011325953318648361