Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abhishek
/
sketch-to-image
like
10
Runtime error
App
Files
Files
Community
2
58f667f
sketch-to-image
/
annotator
/
grayscale
/
__init__.py
abhishek
HF staff
first commit
58f667f
over 1 year ago
raw
Copy download link
history
blame
Safe
143 Bytes
from
skimage
import
color
class
GrayscaleConverter
:
def
__call__
(
self, img
):
return
(color.rgb2gray(img) *
255.0
).astype(
'ubyte'
)