MonoGEODepth / app.py
supundhananjaya's picture
Create app.py
c332d94 verified
raw
history blame
236 Bytes
import gradio as gr
import numpy as np
from PIL import Image
def dummy_model(img):
img_array = np.array(img)
return img_array
iface = gr.Interface(
fn=dummy_model,
inputs="image",
outputs="image"
)
iface.launch()