Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def draw_detections(image, detections):
|
|
32 |
# Draw rectangles and text with a larger font
|
33 |
cv2.rectangle(np_image, (x_min, y_min), (x_max, y_max), (0, 255, 0), 2)
|
34 |
label_text = f'{label} {score:.2f}'
|
35 |
-
cv2.putText(np_image, label_text, (x_min, y_min - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255),
|
36 |
|
37 |
# Convert BGR to RGB for displaying
|
38 |
final_image = cv2.cvtColor(np_image, cv2.COLOR_BGR2RGB)
|
@@ -50,16 +50,15 @@ def get_pipeline_prediction(pil_image):
|
|
50 |
|
51 |
# Define the Gradio blocks interface
|
52 |
with gr.Blocks() as demo:
|
53 |
-
gr.Markdown("## Object Detection")
|
54 |
with gr.Row():
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
|
64 |
btn_run.click(get_pipeline_prediction, inputs=inp_image, outputs=[out_image, out_json])
|
65 |
|
|
|
32 |
# Draw rectangles and text with a larger font
|
33 |
cv2.rectangle(np_image, (x_min, y_min), (x_max, y_max), (0, 255, 0), 2)
|
34 |
label_text = f'{label} {score:.2f}'
|
35 |
+
cv2.putText(np_image, label_text, (x_min, y_min - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255), 2)
|
36 |
|
37 |
# Convert BGR to RGB for displaying
|
38 |
final_image = cv2.cvtColor(np_image, cv2.COLOR_BGR2RGB)
|
|
|
50 |
|
51 |
# Define the Gradio blocks interface
|
52 |
with gr.Blocks() as demo:
|
|
|
53 |
with gr.Row():
|
54 |
+
with gr.Column():
|
55 |
+
inp_image = gr.Image(label="Input image", tool=None)
|
56 |
+
btn_run = gr.Button('Run Detection')
|
57 |
+
with gr.Column():
|
58 |
+
with gr.Tab("Annotated Image"):
|
59 |
+
out_image = gr.Image()
|
60 |
+
with gr.Tab("Detection Results"):
|
61 |
+
out_json = gr.JSON()
|
62 |
|
63 |
btn_run.click(get_pipeline_prediction, inputs=inp_image, outputs=[out_image, out_json])
|
64 |
|