Skip to content

NEUBIAS Academy @Home: Interactive Bioimage Analysis with Python and Jupyter

License

Notifications You must be signed in to change notification settings

glynnelson/neubias_academy_biapy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Binder Open In Colab

NEUBIAS Academy @HOME: Interactive Bioimage Analysis with Python and Jupyter

This course is an introduction to bioimage processing with Python and Jupyter. It is composed of a series of Jupyter notebooks that can be simply read or run interactively using either the binder service, the Google Colab service or via a local installation. The course covers basics, such as handling images as Numpy arrays, as well as a few more advanced topics such as tracking, registration etc. While some content presents fundamental concepts in image processing, this is NOT an image processing course. The goal of this cours is to give people with image processing background (e.g. in Fiji) the opportunity to discover how image processing is done in the Python world. In particular this course is not exhaustive as it only covers selected topics.

Static notebooks

GitHub usually renders notebooks when browsing through the repository. If rendering fails you should use the more stable rendering provided through nbviewer.

Running the notebooks interactively

On Binder

This is the preferred solution. This repository has been set-up to be run interactively without any installation required thanks to the binder service. An interactive Jupyter session can be started by clicking on the binder badge in the top left corner of this document. All the necessary packages and data are already pre-installed. If you want to explore this course via this method, you can stop reading here.

On Colab

Alternatively, you can run these notebooks via Google Colab. To do that, click on the Colab badge in the top left corner of this document. This will bring you to the Colab service where you will be able to select a notebook to open. Note that if you directly download the notebooks from GitHub, you should select the colab branch instead of master.

The dataset cannot be "pre-installed" for you on Colab, so you will have to download it to Google Drive either directly using this link or by visiting the Zendo repository of the course. Unzip the Data.zip file and place the Data folder at the very top of your Google Drive folder tree. The latter is important to ensure that image import commands in the notebooks work as expected.

In order to access Google Drive from Colab, you will need to connect to it from each notebook. For that, execute the following cell at the top of each notebook and follow instructions:

from google.colab import drive
drive.mount('/content/drive')

Finally, as it is not possible to permanently install additional packages in Colab, they are installed in each notebook via a pip command at the top of the notebook. Those cell will look like this (here aicsimageio and trackpy are installed):

%%bash
wget https://raw.githubusercontent.com/guiwitz/neubias_academy_biapy/master/course_functions.py
pip install aicsimageio
pip install trackpy

Local installation

In order to run this course on your own computer you will have to:

  1. Download this GitHub repository by using the "Clone or Download" button at the top right of this page.

  2. Download the dataset for the course either directly using this link or by visiting the Zendo repository of the course.

  3. Adjust your folders so that the Data folder is at the same level as the folder containing the notebooks:

    Mainfolder
     ├── neubias_academy_biapy
     │   ├── 01-Python_bare_minimum.ipynb
     │   ├── 02-Numpy_images.ipynb
     │   └── ...
     ├── Data
     │   ├── neuron.tif
     │   ├── Klee.jpg
     │   └── ...
     └── ...
    
  4. Install Jupyter and all necessary packages. We strongly recommend to install Anaconda or Miniconda (a light-weight Anaconda) to facilitate package management. If you install Anaconda, you can install all necessary packages by using the environment_minimal.yml file available in BIAPy/installation and following these instructions. If you use miniconda or prefer to install packages via command line, open a terminal and:

    1. Move to the neubias_academy_biapy/installation folder e.g.
    cd Mainfolder/neubias_academy_biapy/installation
    1. Use the environment_minimal.yml file to install all packages in one go:
    conda env create -f environment_minimal.yml
    1. Now you have a specific environment called biapy that has all packages (including Jupyter) installed. Everytime you want to use it, open a terminal and start Jupyter:
    conda activate biapy
    1. To start a Jupyter session, activate your environment biapy (see 3.) and then start Jupyter:
    jupyter notebook

    Note that the Jupyter browser will open from your current location in the terminal. So don't start jupyter from within e.g. the installation folder as you won't be able to move higher.

Note that this procedure installs all packages except for 13-ML_based_segmentation.ipynb. That notebook requires Cellpose and StarDist. As installation of these packages might depend on your local configuration, we do not include them in the default installation. Consult their documentation on how to install them if you want to explore that notebook.

About

NEUBIAS Academy @Home: Interactive Bioimage Analysis with Python and Jupyter

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%