Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Gholamreza
/
testspace
like
0
Sleeping
App
Files
Files
Community
18f264e
testspace
/
app.py
Gholamreza
Update app.py
5714520
over 1 year ago
raw
Copy download link
history
blame
183 Bytes
import
gradio
as
gr
import
cv2
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
+
str
(cv2.__version__)
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()