Metadata-Version: 2.1
Name: PlotScrollNumpyArrays
Version: 0.0.1
Summary: Tools for plotting NumPy arrays, typically from DICOM and including overlap of dose/mask
Home-page: https://github.com/brianmanderson/Plot_And_Scroll_Images
Author: Brian Mark Anderson
Author-email: b5anderson@health.ucsd.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: SimpleITK

"# Plot_And_Scroll_Images" 
Used to plot and scroll through images

manipulated from https://matplotlib.org/2.1.2/gallery/animation/image_slices_viewer.html

```
from Plot_Scroll_Images import plot_scroll_Image
x = some_array
x.shape = (25, 512, 512, 1)
plot_scroll_Image(img=x)

# also support int8 mask and float dose for overlay
plot_scroll_Image(img=x, mask=mask_array, dose=dose_array, alpha=0.3)
```

<p align="center">
    <img src="examples/Example_mask.png" height=300>
    <img src="examples/Example_dose.png" height=300>
</p>


