object-counting / app.py
chauhuynh90's picture
Update app.py
cf8f583
raw
history blame
266 Bytes
import gradio as gr
import torch
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
import cv2
import numpy as np
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()