Spaces:
Running
Running
File size: 879 Bytes
c640bc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import os
import time
from pathlib import Path
from ultralytics import YOLO
class DetectionService:
def __init__(self, model_path):
self.model_path = model_path
def image_det_save(self, image_path, thresh=0.2):
"""
image detection and save the image with bounding box
:param image_path:
:param thresh:
:return:
"""
detector = YOLO(self.model_path)
results = detector.predict(image_path, conf=thresh, show=False)
return results
if __name__ == "__main__":
detection_service = DetectionService(
model_path='resources/models/v1/best.pt',
)
input_image_path = Path(
"/home/ishwor/Downloads/PY-4856_Crosman-Bushmaster-MPW-Full_1558033480-458822316.jpg")
detection_service.image_det_save(
image_path=str(input_image_path),
thresh=0.2
)
|