A prototype web app for viewing multidimensional images from MicroManager microscopy software.
-
Use a Python script (
backend/gen_csv.py
) to generate thumbnails and metadata. -
Edit
datasets
variable inbackend/gen_csv.py
to define data sets. -
Run
backend/gen_csv.py
, and it will generate: 1. Data set entries indatasets.csv
file. 1. Metadata of each data set inmetadata
folder. 1. images inimages
folder. -
The web interface, written with React, uses static JSON files and image thumbnails.
The server side just needs to serve static files. For example, run the following in the folder of index.html.
python -m SimpleHTTPServer 3000
Then just open http://localhost:3000/ in a web browser.
MIT license.