abhishek's picture
abhishek HF staff
first commit
58f667f
raw
history blame
143 Bytes
from skimage import color
class GrayscaleConverter:
def __call__(self, img):
return (color.rgb2gray(img) * 255.0).astype('ubyte')