Go to file
Jerome Kieffer 0e2ce80656 fix some stupid bugs in pyfai calib 2012-09-06 13:45:56 +02:00
benchmark -fix typo in detector (and propagate) 2012-08-22 12:38:41 +02:00
calibration work ongoing for integration using OpenCL. 2012-06-13 15:08:17 +02:00
dll Original Commit 2012-06-07 21:43:28 +02:00
doc Original Commit 2012-06-07 21:43:28 +02:00
geometry Update mathematica notebook with geometries calculated with arctan 2012-06-11 10:21:56 +02:00
openCL Move OpenCL device selection in Cython binding 2012-07-23 13:36:16 +02:00
pyFAI-src import-error should be considered as warning 2012-09-05 21:22:36 +02:00
scripts fix some stupid bugs in pyfai calib 2012-09-06 13:45:56 +02:00
src Fix typo in saxs Q geometry = 4pi/lambda * sin (2theta/2) 2012-08-27 10:49:58 +02:00
test Parallel version of 2Theta array calculation (about 5x faster) via 2012-08-24 10:44:46 +02:00
.gitignore Minor clean up and testing using a low-end GPU 2012-06-14 23:32:36 +02:00
CHANGELOG.txt Big commit fixing most bugs remaining before v0.6 2012-07-03 12:38:37 +02:00
MANIFEST include geometry C sources (fixed in rev 0.7.2) 2012-08-27 15:12:28 +02:00
MANIFEST.in prepare the v0.6 release 2012-07-03 14:20:46 +02:00
README.md Original Commit 2012-06-07 21:43:28 +02:00
TODO.txt Feature request from ID11: calibration using dark & flat images 2012-07-23 13:37:17 +02:00
build-deb.sh Original Commit 2012-06-07 21:43:28 +02:00
build-msi.bat Original Commit 2012-06-07 21:43:28 +02:00
setup.py Parallel version of 2Theta array calculation (about 5x faster) via 2012-08-24 10:44:46 +02:00
setup_failsafe.py update failsafe setup.py to include parallel geometry calculation 2012-09-05 21:21:20 +02:00
setup_no_OpenCL.py fail-safe setup.py (no OpenCL and no cython generation) 2012-07-28 19:28:29 +02:00
stdeb.cfg Original Commit 2012-06-07 21:43:28 +02:00

README.md

pyFAI : Fast Azimuthal Integration in Python

pyFAI is an azimuthal integration library that tries to be fast (as fast as C and even more using OpenCL) It is based on histogramming of the 2theta/Q position of each (center of) pixel weighted by the intensity of each pixel. Neighboring output bins get also a contribution of pixels next to the border

Installation

pyFAI can be downloaded from the http://forge.epn-campus.eu/projects/azimuthal/files. Presently the source code has been distributed as a zip package and a compressed tarball. Download either one and unpack it.

e.g. tar xvzf pyFAI-0.1.0.tar.gz or unzip pyFAI-0.1.0.zip

all files are unpacked into the directory pyFAI-0.0.7. To install these do

cd pyFAI-0.0.7

and install pyFAI with

python setup.py install

most likely you will need to do this with root privileges (e.g. put sudo in front of the command). The newest development version can be obtained by checking it out from the subversion (SVN) repository. Do

svn checkout http://forge.epn-campus.eu/svn/azimuthal/pyFAI cd pyFAI sudo python setup.py install

If you are using MS Windows you also download a binary version packaged as executable installation files (Chose the one corresponding to your python version).

Dependencies

Python 2.5 or later should be compatible with python 3 For full functionality of pyFAI the following modules need to be installed.

* numpy 		- 	http://www.numpy.org
* scipy 		- 	http://www.scipy.org
* matplotlib 	- 	http://matplotlib.sourceforge.net/
* fabio		-	http://sourceforge.net/projects/fable/files/fabio/

Ubuntu and Debian Like linux distributions:

To use pyFAI on Ubuntu (a linux distribution based on Debian) the needed python modules can be installed either through the Synaptic Package Manager (found in System -> Administration) or using apt-get on from the command line in a terminal. The extra ubuntu packages needed are:

* python-numpy
* python-scipy
* python-matplotlib    
* python-dev

Only Fabio has to be downloaded separatly and installed * python-fabio (from http://sourceforge.net/projects/fable/files/fabio/)

using apt-get these can be installed as:

sudo apt-get install python-numpy python-scipy python-matplotlib python-dev
wget http://sourceforge.net/projects/fable/files/fabio/0.0.7/squeeze/python-fabio_0.0.7-1_amd64.deb/download sudo dpkg -i python-fabio_0.0.7-1_amd64.deb