Metadata-Version: 2.1
Name: PlotScrollNumpyArrays
Version: 2.0.1
Summary: Services for plotting and viewing
Home-page: https://github.com/brianmanderson/Dicom_RT_and_Images_to_Mask
Author: Brian Mark Anderson
Author-email: markba122@gmail.com
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>
