User Tools

Site Tools


software:imaged11

This is an old revision of the document!


ImageD11

Installing ImageD11

ImageD11 is written and maintained by John Wright from ESRF and has an extensive manual available here https://pythonhosted.org/ImageD11/.

Necessary Hardware and Software

First of all, you will need Linux, either as a separate harddrive (with lots of memory space) or as a virtual machine on your Windows/Apple computer. In case you are not familiar with Linux, ask your administrator for help and maybe do an online crash course to learn basic navigation and so on.

Installation

Go to the ImageD11 homepage and click on the green button “clone or download”. Click on “Download ZIP”. After the download is finished, navigate to the “Downloads” folder and unpack the ZIP folder to a directory of your choice.

Open the Konsole and navigate to the unpacked ImageD11 directory. There should be a folder called “setup.py”. Type the following to the Konsole:

  python setup.py build

and after that:

  python setup.py install

If you get an error, there might be some of the additional libraries still missing. Check out the pages for the other software for more information. For example, Fabian requires many prerequisites. If the installation of ImageD11 doesn't seem to work, just try out another program first.

Starting the software

Open the program by going to the folder where the processed data is stored. Now open the program by typing the following to the Konsole:

  ImageD11_gui.py

When you try to open the program for the first time there is usually an error: “cannot find module FitAllB.conversion”. This error occurs due to a bug in FitAllB, which you have to fix manually. This is how to to it (AFTER you installed FitAllB, of course):

Go to the FitAllB directory and try to find the missing file conversion.py. It should be in a directory like this:

  ../FitAllB-master/FitAllB/

Look again at the error message in the Konsole and the lines above. Somewhere there you should find the path/directory where the Konsole expected to find FitAllB.conversion. Usually the directory is something like

  ../usr/lib64/python2.7/site-packages/

This means that FitAllB (including the file conversion.py) should be here but it is not (due to a bug in the installation process). And this is already the clue to solve the problem. Just copy the whole FitAllB folder to the Python site-packages folder. Use a code like this:

  cp -r ../FitAllB/ /usr/lib64/python2.7/site-packages/

or

  sudo cp -r ../FitAllB/ /usr/lib64/python2.7/site-packages/

The sudo is required if you get the error “permission denied” or similar. Note that you need to enter the root password (admin password or master password) in order to do the second case. Check if the copying worked.

Try to start the program again (see above).

Basic instructions

The program should open. In ImageD11 go to Transformation, then Load filtered peaks and choose the .flt file you would like to see (You automatically should be in the right folder.).

Then go to Transformation and plot y/z. You should see a 2D diffraction image of all the spots which passed the threshold. From now on, we call this image diffraction plot. You should remember, which file you opened, because ImageD11 doesn't show this anywhere.

ImageD11 can show only one diffraction plot at once. If you want to compare two (or more) diffraction plots, you can either save the plots (as .png file) or open a new ImageD11 in a new tab of the Konsole.

software/imaged11.1530880440.txt.gz · Last modified: 2019/02/18 10:11 (external edit)