File size: 937 Bytes
23123a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import cv2
from ultralytics import YOLO

from src.handlers.image_processing import draw_box, resize_image

import os
from dotenv import load_dotenv
load_dotenv()

class SackDetector:
    def __init__(self):
        self.model_path = os.getenv("YOLO_MODEL_PATH", None)  # Default path
        if self.model_path is None:
            raise ValueError("YOLO_MODEL_PATH environment variable is not set.")
        self.model = YOLO(self.model_path)
        self.class_list = self.model.model.names

    def detect_objects(self, image_path):
        results = self.model(image_path)
        result = results[0]
        labeled_img = draw_box(result.orig_img, result, self.class_list)
        # display_img = resize_image(labeled_img, 100)
        return labeled_img, result

    def display_image(self, image):
        cv2.imshow('outputimage', image)
        cv2.waitKey(0)  # Wait for user input to close the window