Metadata-Version: 2.1
Name: pysmtb
Version: 0.0.12
Summary: python toolbox of (mostly) image-related helper / visualization functions
Home-page: https://github.com/smerzbach/pysmtb
Author: Sebastian Merzbach
Author-email: smerzbach@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pysmtb
python toolbox of (mostly) image-related helper / visualization functions 
```
from glob import glob

from pysmtb.iv import iv
from pysmtb.utils import read_exr

fns = glob('*.exr')
ims = [read_exr(fn)[0] for fn in fns]

iv(ims)
iv(ims, autoscale=False, scale=10, gamma=2)
iv(ims, collage=True)
```
![](examples/iv.jpg) ![](examples/iv_collage.jpg)

```
# add labels onto each image
iv(ims, labels=fns, annotate=True, annotate_numbers=False)
```
![](examples/iv_labels.jpg)


