|
import gradio as gr |
|
from roboflow import Roboflow |
|
import tempfile |
|
import os |
|
from sahi.slicing import slice_image |
|
from sahi import get_sliced_prediction |
|
from sahi.postprocess import postprocess_predictions |
|
|
|
|
|
rf = Roboflow(api_key="Otg64Ra6wNOgDyjuhMYU") |
|
project = rf.workspace("alat-pelindung-diri").project("nescafe-4base") |
|
model = project.version(16).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 |
|
|
|
|
|
slice_image_result = slice_image( |
|
image=temp_file_path, |
|
output_file_name="sliced_image", |
|
output_dir="/tmp/sliced/", |
|
slice_height=256, |
|
slice_width=256, |
|
overlap_height_ratio=0.1, |
|
overlap_width_ratio=0.1 |
|
) |
|
|
|
|
|
predictions = get_sliced_prediction( |
|
image_path=temp_file_path, |
|
model_path="path_to_your_model", |
|
model_type="yolov8", |
|
slice_height=256, |
|
slice_width=256, |
|
overlap_height_ratio=0.1, |
|
overlap_width_ratio=0.1, |
|
model_confidence_threshold=0.25 |
|
) |
|
|
|
|
|
postprocessed_predictions = postprocess_predictions( |
|
predictions=predictions, |
|
postprocess_type='NMS', |
|
iou_threshold=0.5 |
|
) |
|
|
|
|
|
annotated_image = model.annotate_image_with_predictions(temp_file_path, postprocessed_predictions) |
|
|
|
|
|
output_image_path = "/tmp/prediction.jpg" |
|
annotated_image.save(output_image_path) |
|
|
|
|
|
class_count = {} |
|
for detection in postprocessed_predictions: |
|
class_name = detection.class_name |
|
if class_name in class_count: |
|
class_count[class_name] += 1 |
|
else: |
|
class_count[class_name] = 1 |
|
|
|
|
|
result_text = "Jumlah objek per kelas:\n" |
|
for class_name, count in class_count.items(): |
|
result_text += f"{class_name}: {count} objek\n" |
|
|
|
|
|
os.remove(temp_file_path) |
|
|
|
return output_image_path, result_text |
|
|
|
|
|
iface = gr.Interface( |
|
fn=detect_objects, |
|
inputs=gr.Image(type="pil"), |
|
outputs=[gr.Image(), gr.Textbox()], |
|
live=True |
|
) |
|
|
|
|
|
iface.launch() |
|
|