Releases: rverleur/cine-reader
Releases · rverleur/cine-reader
Release list
cine-reader 0.1.1
This release introduces the first PyPI distribution for the Python Phantom .cine reader.
The Python package is now published on PyPI as cine-handler, while the import path remains cine_reader.
Highlights
- Added PyPI packaging for the Python reader
- Added automated GitHub Release -> PyPI publishing via Trusted Publishing
- Limited the published package to the Python implementation only
- Added PyPI-friendly documentation covering installation, quick start, and the public Python API
- Kept the MATLAB implementation in the repository, with links from the PyPI project page back to GitHub
Install
pip install cine-handlerThen import it in python with:
from cine_reader import CineNotes
- PyPI package name:
cine-handler - Python import name:
cine_reader - The MATLAB implementation is still available in this repo and is not included in the PyPI package
Links
- Repository: https://github.com/rverleur/cine-reader
- Python API notes: https://github.com/rverleur/cine-reader/blob/main/python/API.md
- MATLAB implementation: https://github.com/rverleur/cine-reader/tree/main/Matlab
cine-reader 0.1.0
cine-reader 0.1.0
Initial release of cine-reader, a Python and MATLAB reader for Vision Research Phantom .cine files.
Highlights
- Reads Phantom CINE metadata and frame payloads.
- Supports normal 8/16-bit image data and packed 10-bit data.
- Includes native packed-10-bit unpack helpers for Windows, Linux, and macOS, with a NumPy fallback.
- Supports raw color CFA/Bayer cine files.
- Adds optional per-frame dead-pixel repair.
- Adds optional per-frame debayering.
- Exposes raw CFA red, green, and blue sample arrays with
NaNat non-matching color sites. - Includes performance benchmark example for frame-loading throughput.
Python install
Download the wheel from this release, then install it with:
pip install cine_reader-0.1.0-py3-none-any.whlOr install directly from the release asset URL:
pip install https://github.com/rverleur/cine-reader/releases/download/v0.1.0/cine_reader-0.1.0-py3-none-any.whl