An open API service indexing awesome lists of open source software.

https://github.com/eulerlab/scanm_support

Two-photon imaging software - Support
https://github.com/eulerlab/scanm_support

Last synced: about 1 month ago
JSON representation

Two-photon imaging software - Support

Awesome Lists containing this project

README

          

# ScanM - Support

Python support for [ScanM](https://github.com/eulerlab/ScanM_support/wiki), a two-photon imaging software. This package provides tools for reading and processing ScanM binary data files (`.smp` pixel data, `.smh` header files).

## Installation

### Prerequisites

- Python >= 3.6
- [uv](https://docs.astral.sh/uv/getting-started/installation/) (recommended) or pip

### Clone and install

```bash
git clone https://github.com/eulerlab/ScanM_support.git
cd ScanM_support
```

**With uv (recommended):**

```bash
uv pip install -e .
```

**With pip:**

```bash
pip install -e .
```

## Usage

```python
from scanmsupport.scanm.scanm_smp import SMP

data = SMP()
data.loadSMP("path/to/file.smp")
```

## Further information

Check out the [wiki](https://github.com/eulerlab/ScanM_support/wiki).