Metadata-Version: 2.4
Name: movierender
Version: 0.2.1
Summary: A package for rendering images and overlay data to video; designed for microscopy data.
Project-URL: Homepage, https://github.com/fabio-echegaray/movierender
Project-URL: Bug Reports, https://github.com/fabio-echegaray/movierender/issues
Project-URL: Source, https://github.com/fabio-echegaray/movierender
Author-email: Fabio Rodrigo Echegaray Iturra <fabio.echegaray@gmail.com>
Maintainer-email: Fabio Rodrigo Echegaray Iturra <fabio.echegaray@gmail.com>
License-Expression: AGPL-3.0-only
License-File: LICENSE.txt
Keywords: microscopy,movie,render
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Requires-Dist: asyncpool~=1.0
Requires-Dist: beautifulsoup4~=4.12.3
Requires-Dist: descartes==1.1.0
Requires-Dist: imgfileops>=0.3.0
Requires-Dist: matplotlib>=3.2.0
Requires-Dist: moviepy<2,>=1.0.3
Requires-Dist: numpy>=1.16.0
Requires-Dist: pandas~=1.5
Requires-Dist: pyqt5~=5.15.2
Requires-Dist: scikit-image~=0.24
Requires-Dist: scipy~=1.14
Requires-Dist: seaborn~=0.13
Requires-Dist: shapely~=2.0.4
Requires-Dist: tifffile~=2024.6.18
Requires-Dist: typer>=0.9.0
Description-Content-Type: text/markdown

# Movie Render
This package renders movies from configuration files referencing microscopy data.

## Table of contents
* [Documentation](#documentation)
* [Setup](#setup)
* [Features](#features)
* [Status](#status)
* [Contact](#contact)
* [License](#license)


## Documentation
See documentation [here](docs/main.md)

## Setup
`pip install movierender`
    
### Libraries used
* [FileOps](https://github.com/fabio-echegaray/fileops) (sister project for data loading)
* [Matplotlib](https://github.com/matplotlib/matplotlib)

The package also uses other libraries.
For a complete list, check the dependencies variable of the pyproject.toml file.


## Features
### Ability to write configuration files for volume export and movie rendering
This feature helps to programmatically render different versions of the data.
For example, it is possible to export the data in volumetric formats using either OpenVDB or the VTK library. 
Similarly, it can render the data in a movie format using each channel separately, or in a composite image.
For more details, see the documentation of the [FileOps project](https://github.com/fabio-echegaray/fileops) where the syntax of configuration files is specified.
I'm currently working on the declarative grammar of this feature to make it consistent.


### To-do list for development in the future:
* Keep writting test functions (maybe generate a repository of image files to test against?).
* Write examples of file export.
* Improve exporting volumetric files and the related syntax in the configuration files.

## Status
Project is active writing and _in progress_.

## Contact
Created by [@fabioechegaray](https://twitter.com/fabioechegaray)
* [fabio.echegaray@gmail.com](mailto:fabio.echegaray@gmail.com)
* [GitHub](https://github.com/fabio-echegaray)
Feel free to contact me!

## License
    Movie-Render
    Copyright (C) 2021-2025  Fabio Echegaray

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
