when run [show_nii3.py](https://github.com/zuzhiang/show-nii/blob/master/show_nii3.py),there is an error came out: ```bash AttributeError: module 'scipy.ndimage' has no attribute 'imread' ``` Solution: comment from the official website of SciPy: imread is deprecated! imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use `imageio.imread` instead. u need to let `from imageio import imread` replace `from scipy.ndimage import imread` in [Visualization.py](https://github.com/zuzhiang/show-nii/blob/master/MeDIT/Visualization.py) line 7