CloudScope¶

CloudScope is an image loading, visualization, and analysis application.
It provides desktop and browser interfaces for working with acquisition-backed image data. Current quantitative analysis workflows are designed for line scan kymographs and include:
- in vivo blood flow velocity analysis using a Radon-transform-based method
- vessel diameter analysis
- peak detection for functional fluorescence reporters (like GCaMP)
For folder-level comparison of analysis results across many files, CloudScope provides pool plots — interactive velocity and peak summaries that update as you load data and run analyses. See the Pool plots guide.
New to the interface? Start with Using the GUI — load sample data from the load/save controls, select files and ROIs, and run analyses from the left toolbar.
-
Launch the web app
Try CloudScope in your browser before installing a desktop build.
-
Get the desktop app
CloudScope desktop is the same application on macOS and Windows. Request a build, then follow the platform install steps in the documentation.
Why CloudScope?¶
CloudScope separates data handling from user interfaces. The desktop and browser GUIs, notebooks, and scripts all use the same backend code for loading files, managing ROIs, running analysis, and saving results.
This architecture helps keep analysis behavior reproducible across interfaces and makes it possible to validate workflows with unit tests and versioned releases.
One backend, multiple interfaces¶
CloudScope is built around a shared scientific backend. The GUI is a user interface for the same analysis code that can also be called directly from Python notebooks and scripts — so a measurement run in the app can be reproduced and extended in code without reimplementing the algorithm.
Supported file formats¶
CloudScope supports these commercial microscopy formats:
- Olympus / Evident
.oir - Zeiss
.czi - Nikon
.nd2
and these open image formats:
- TIFF
.tif - OME-Zarr
.ome.zarr
See Supported file formats for format-specific notes.
Support for commercial microscopy formats builds on the Python imaging ecosystem. CloudScope gratefully acknowledges Christoph Gohlke for long-standing work on microscopy and file-format tooling.
Who is this documentation for?¶
-
End User
Get the desktop app, open the web app, load data, run analysis, visualize images, and export results.
-
Data Scientist
Understand
AcqImage,AcqImageList, line scan kymograph analysis, saved files, metadata, and notebook workflows. -
Developer
Clone the repository, run tests, build docs, understand the architecture, and follow the release/deployment workflow.