vemas commited on
Commit
a54a16d
·
verified ·
1 Parent(s): f305cf3

Create filters.py

Browse files
Files changed (1) hide show
  1. filters.py +4 -0
filters.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from skimage.color import rgb2gray
2
+
3
+ def as_gray(image):
4
+ return rgb2gray(image)