-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated README.md and renamed XRH folder to CorView
- Loading branch information
1 parent
771cabe
commit 018c23b
Showing
6 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,42 @@ | ||
# CorView | ||
|
||
CorView (CORrelative microscopy VIEWer) is a visualisation tool for 2D-3D image datasets, where 2D images are registered to 3D stacks. | ||
CorView (CORrelative microscopy VIEWer) is an interactive visualisation tool for 2D-3D image datasets, where 2D images are registered to 3D stacks. Correlative microscopy datasets can be viewed side-by-side and these visualisations shared as html files. CorView contains tools to create these | ||
|
||
This work was completed with support from the Engineering and Physical Sciences Research Council (EPSRC), Institute for Life Sciences, University of Southampton during a doctoral research studentship from the Faculty of Engineering and Physical Sciences, University of Southampton. | ||
|
||
## Installation | ||
|
||
If you are comfortable with Git, navigate to a directory of your choice in cmd and clone the repository: | ||
|
||
``` | ||
git clone https://github.com/elainehoml/CorView.git | ||
``` | ||
|
||
Alternatively, the repository can be downloaded as a .zip file from https://github.com/elainehoml/CorView. | ||
|
||
## Using CorView | ||
|
||
### Step 1: Install Anaconda to run Jupyter Notebooks | ||
|
||
You will need to be able to run Jupyter Notebooks, see [this link for help on installing this](https://jupyter.readthedocs.io/en/latest/install.html#install). Jupyter notebooks are a convenient way to share and run code. | ||
|
||
### Step 2: Activate Python virtual environment and launch Jupyter Notebook | ||
|
||
Python virtual environments are used to install specific versions of Python packages without affecting your root installation. | ||
|
||
First, open the Anaconda Prompt terminal and navigate to the directory where CorView is stored. | ||
|
||
``` | ||
cd <CorView repo, replace with the correct directory> | ||
conda env create -n CorView -f environment.yml | ||
conda activate CorView | ||
jupyter notebook | ||
``` | ||
|
||
### Step 3: Run CorView.ipynb | ||
|
||
CorView.ipynb is a Jupyter notebook that allows easy generation of visualisations for correlative microscopy datasets. Run each code cell and follow the steps to create your own visualisations. | ||
|
||
## Step 4: Share your visualisations | ||
|
||
CorView exports interactive visualisations to html, which can be opened in any web browser, no installation required! This makes it easy and straightforward to share your visualisations with others. |