Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import subprocess
|
3 |
+
import os
|
4 |
+
|
5 |
+
# YOLOv8 detection function
|
6 |
+
def detect_objects(image):
|
7 |
+
# Save the uploaded image temporarily
|
8 |
+
input_image_path = "input.jpg"
|
9 |
+
image.save(input_image_path)
|
10 |
+
|
11 |
+
# Define the YOLOv8 command
|
12 |
+
output_dir = "./runs/detect"
|
13 |
+
os.makedirs(output_dir, exist_ok=True)
|
14 |
+
|
15 |
+
command = [
|
16 |
+
"yolo", # YOLOv8 CLI command
|
17 |
+
"task=detect", # Specify the task as detection
|
18 |
+
"mode=predict", # Set mode to predict
|
19 |
+
f"model=best_p6.pt", # Path to your YOLOv8 model weights
|
20 |
+
f"source={input_image_path}", # Input image path (uploaded by user)
|
21 |
+
f"project={output_dir}", # Output directory
|
22 |
+
f"name=result", # Subfolder name for results
|
23 |
+
"exist_ok=True" # Allow overwriting existing results
|
24 |
+
]
|
25 |
+
|
26 |
+
# Run YOLOv8 inference
|
27 |
+
try:
|
28 |
+
subprocess.run(command, check=True)
|
29 |
+
except Exception as e:
|
30 |
+
return f"Error during YOLO inference: {e}"
|
31 |
+
|
32 |
+
# Get the path to the output image
|
33 |
+
output_image_path = os.path.join(output_dir, "result", os.path.basename(input_image_path))
|
34 |
+
|
35 |
+
# Return the output image for display
|
36 |
+
if os.path.exists(output_image_path):
|
37 |
+
return output_image_path
|
38 |
+
else:
|
39 |
+
return "Error: Output image not found."
|
40 |
+
|
41 |
+
# Create the Gradio interface
|
42 |
+
interface = gr.Interface(
|
43 |
+
fn=detect_objects, # The function to call when an image is uploaded
|
44 |
+
inputs=gr.Image(type="pil"), # Accept images as input
|
45 |
+
outputs=gr.Image(type="file"), # Return an image as output
|
46 |
+
title="YOLOv8 Object Detection",
|
47 |
+
description="Upload an image of floating waste in water, and this app will detect it using YOLOv8."
|
48 |
+
)
|
49 |
+
|
50 |
+
# Launch the Gradio app
|
51 |
+
interface.launch(share=True) # Use share=True to get a public URL
|