Commit c7fa1e42 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

Update README.md

parent 6cfcd27c
# Description # Description
Class imagej_tiff to read multilayer tiff files and parse tags Class imagej_tiff to read multilayer tiff files and parse tags
* layers are stacked as along depth (think RGB) * layers are stacked along depth (think RGB)
* parse imagej generated tags (50838 and 50839)
# Example # Examples
```sh
from PIL import Image from PIL import Image
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
import numpy as np import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import imagej_tiff as ijt import imagej_tiff as ijt
tiff = ijt.imagej_tiff('test.tiff') tiff = ijt.imagej_tiff('test.tiff')
...@@ -18,3 +16,4 @@ print(ijt.infos) ...@@ -18,3 +16,4 @@ print(ijt.infos)
print(ijt.infos) print(ijt.infos)
tiff.show_images(['X-corr','Y-corr',0,2]) tiff.show_images(['X-corr','Y-corr',0,2])
plt.show() plt.show()
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment