Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 2.43 KB

Live-Cell-Imaging-and-Tracking.md

File metadata and controls

65 lines (50 loc) · 2.43 KB

Cell Tracking

Tracking Visualisation

Download slides (Optional)

All the slides that will be used in this session are here.

Download demo data

We're going to be working with some example datasets, which you can download from here.

Set up conda environment

For this module, you need to set up a conda environment to analyse tracking data in Jupyter notebooks.

  1. Make sure you first installed conda properly by following these instructions.
  2. Open Anaconda Prompt (use terminal on Macs) and type the following to create a new environment:
    conda create --name cell-tracking python=3.12
    
  3. Check that the environment was created:
    conda env list
    
  4. Activate your new environment so you can use it:
    conda activate cell-tracking
    
  5. Install the necessary packages for this session:
    conda install matplotlib pandas numpy seaborn jupyter
    
  6. Open Jupyter Notebook and check that the installed packages can be correctly imported.
    jupyter notebook
    
    When Jupyter notebook opens in the web browser, open a new notebook with File/New/Notebook

Tracking Visualisation

      Select a python kernel

Tracking Visualisation

      Type in one cell
  import numpy as np

      and run

Tracking Visualisation

      If no error is found, it means that the package has been installed correctly.

For more information on using conda, see here.

For a detailed explanation on Jupyter Notebook, visit the Jupyter Notebook User Documentation