We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a488a5 commit 26f1f4eCopy full SHA for 26f1f4e
1 file changed
README.md
@@ -157,6 +157,14 @@ import numpy as np
157
import matplotlib.pyplot as plt
158
from scipy.misc import imread, imresize
159
160
+"""
161
+'imread' and 'imresize' will be removed from new version of 'Scipy 1.2.0'
162
+There are other options.
163
+For 'imread':
164
+ from matplotlib.pyplot import imread
165
+ from imageio import imread
166
167
+
168
# Reading images
169
cat, dog = imread('images/cat.jpg'), imread('images/dog.jpg')
170
0 commit comments