Getting started with neutron imaging tutorial notebooks
Getting started with neutron imaging tutorial notebooks
Introduction
This part of the IAEA e-learning package for neutron imaging is implemented using jupyter-notebooks. The notebooks are interactive documents with embedded python code. This concept allows you to modify the computations and see what happens, you can even try the demonstrated concepts on your own data to see what happens. Some of the tutorial notebooks are implemented as exercises where you are guided step by step to implement your own python code. These notebooks have a solution notebook accompanying them, in which a solution is presented. You can chose yourself what benefits your learning and your python skills best.
Before you start, you should know that you can learn from these notebooks without knowing any python. You will however get the most out of them if you have some basic python skills. This allows you to make changes and understand the technical details of the analysis.
There are two main approaches to using the tutorial notebooks; by installing jupyter-notebook on your computer or by running the notebooks on Google Colab. By installing jupyter locally you have the most freedom to work with the material but if you for examply don’t want to fill your hard drive with yet another software package there is the Colab solution which you try without installing anything locally.
Run the notebooks using google Colab
Google colab is a platform where you can run notebooks on googles cloud computers without installing anything locally. Just click on the Colab icon and it starts a notebook
The requirement to use Google Colab is that you have a google account to login with.
Run the notebooks using jupyter locally
Jupyter is mostly easiest to install through the Anaconda environment which you can download freely. By installing it, you have very good starting point for data analysis using python. It includes a large collection of packages preinstalled has a packet manager to help you installing more packages if needed. Note: anaconda is still not fully implemented on computers with Apple Silicon CPUs. For these, you have to install a package called miniconda and manually install all dependencies. Which is quite some work.
Anaconda can be installed on their homepage. Download and install the version for your operating system.
You will also need to install some additional packages:
tifffile
for reading tiff-filestqdm
progress bar for loops This can be done either in the anaconda navigator or on the command lineconda install tifffile tqdm
Getting the notebooks
The notebooks are stored in a collection of github repositories and there are different ways to download them:
Download zip-files
Download a zip-file containing the repository. This is sufficient if you don’t want to update the local copy of the repository.
Unzip the files and you have all you need to run the tutorials.
Clone the repository using git
Requires that you install a tools to work with git but you can easily get the latest version repository without downloadin all data every time.
git clone https://github.com/ImagingELearning/ImageProcessing.git
git clone https://github.com/ImagingELearning/resolution.git
git clone https://github.com/ImagingELearning/QuantifyingNeutronImages.git