|
import gradio as gr |
|
import os |
|
import tempfile |
|
from roboflow import Roboflow |
|
from dotenv import load_dotenv |
|
|
|
|
|
load_dotenv() |
|
|
|
|
|
api_key = os.getenv("ROBOFLOW_API_KEY") |
|
workspace = os.getenv("ROBOFLOW_WORKSPACE") |
|
project_name = os.getenv("ROBOFLOW_PROJECT") |
|
model_version = int(os.getenv("ROBOFLOW_MODEL_VERSION")) |
|
|
|
|
|
rf = Roboflow(api_key=api_key) |
|
project = rf.workspace(workspace).project(project_name) |
|
model = project.version(model_version).model |
|
|
|
|
|
def detect_objects(image): |
|
|
|
with tempfile.NamedTemporaryFile(delete=False, suffix=".jpg") as temp_file: |
|
image.save(temp_file, format="JPEG") |
|
temp_file_path = temp_file.name |
|
|
|
|
|
predictions = model.predict(temp_file_path, confidence=60, overlap=80).json() |
|
|
|
|
|
class_count = {} |
|
total_count = 0 |
|
|
|
for prediction in predictions['predictions']: |
|
class_name = prediction['class'] |
|
if class_name in class_count: |
|
class_count[class_name] += 1 |
|
else: |
|
class_count[class_name] = 1 |
|
total_count += 1 |
|
|
|
|
|
result_text = "Product Nestle\n\n" |
|
for class_name, count in class_count.items(): |
|
result_text += f"{class_name}: {count} \n" |
|
|
|
result_text += f"\nTotal Product Nestle: {total_count}" |
|
|
|
|
|
output_image = model.predict(temp_file_path, confidence=60, overlap=80).save("/tmp/prediction.jpg") |
|
|
|
|
|
os.remove(temp_file_path) |
|
|
|
return "/tmp/prediction.jpg", result_text |
|
|
|
|
|
iface = gr.Interface( |
|
fn=detect_objects, |
|
inputs=gr.Image(type="pil", label="Input Image"), |
|
outputs=[gr.Image(label="Detect Object"), gr.Textbox(label="Counting Object")], |
|
live=True |
|
) |
|
|
|
|
|
iface.layout = gr.Row( |
|
iface.inputs, |
|
iface.outputs |
|
) |
|
|
|
|
|
iface.launch() |
|
|