Update app.py
Browse files
app.py
CHANGED
@@ -208,7 +208,12 @@ def detect_objects_in_video(video_path):
|
|
208 |
return None, f"An error occurred: {e}"
|
209 |
|
210 |
# ========== Gradio Interface ==========
|
211 |
-
with gr.Blocks() as iface:
|
|
|
|
|
|
|
|
|
|
|
212 |
with gr.Row():
|
213 |
with gr.Column():
|
214 |
input_image = gr.Image(type="pil", label="Input Image")
|
|
|
208 |
return None, f"An error occurred: {e}"
|
209 |
|
210 |
# ========== Gradio Interface ==========
|
211 |
+
with gr.Blocks(theme=gr.themes.Base(primary_hue="red", secondary_hue="yellow", neutral_hue="gray")) as iface:
|
212 |
+
gr.Markdown("""
|
213 |
+
<div style="text-align: center;">
|
214 |
+
<h1>NESTLE - STOCK COUNTING</h1>
|
215 |
+
</div>
|
216 |
+
""")
|
217 |
with gr.Row():
|
218 |
with gr.Column():
|
219 |
input_image = gr.Image(type="pil", label="Input Image")
|