Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hussain-shk
/
sign_detect
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hussain-shk
commited on
Mar 15, 2022
Commit
1d0f8d9
·
1 Parent(s):
5e604f8
initial commit
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def image_mod(image):
5
+
return image.rotate(45)
6
+
7
+
8
+
iface = gr.Interface(image_mod, gr.inputs.Image(type="pil"), "image")
9
+
iface.launch()