Skip to content

Commit 0fabdaa

Browse files
Update Convolution_of_Images.py
1 parent 26f1f4e commit 0fabdaa

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Codes/Convolution_of_Images.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
import matplotlib.pyplot as plt
1919
from scipy.misc import imread, imresize
2020

21+
"""
22+
'imread' and 'imresize' will be removed from new version of 'Scipy 1.2.0'
23+
There are other options.
24+
For 'imread':
25+
from matplotlib.pyplot import imread
26+
from imageio import imread
27+
"""
28+
2129
# Reading images
2230
cat, dog = imread('images/cat.jpg'), imread('images/dog.jpg')
2331

0 commit comments

Comments
 (0)