Newer
Older
QIM is a Python library for 3D quantitative imaging analysis. It provides functionality for handling data, as well as tools for visualization and analysis.
## Loading Data
To load image data from a file, use `qim.io.load()`
vol = qim.io.load("path/to/file.tif", virtual_stack=True)
## GUI Components
QIM provides GUI components for interactive data exploration. The `qim.gui` module contains various classes for visualization and analysis:
app = qim.gui.iso3d.Interface()
app.launch()
```
Graphical interfaces currently available:
- Data exploration tool (`qim.gui.data_exploration`)
- 3D visualization with isosurfaces (`qim.gui.iso3d`)
- Local thickness (`qim.gui.local_thickness`)
# Contributing
Contributions to QIM are welcome! If you find a bug, have a feature request, or would like to contribute code, please open an issue or submit a pull request.
# License
This project is licensed under the MIT License.