Spaces:
Runtime error
Runtime error
kuldipparaliya
commited on
Update utils/yolo_processor.py
Browse files- utils/yolo_processor.py +2 -1
utils/yolo_processor.py
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
|
2 |
import streamlit as st
|
3 |
-
from
|
4 |
import tempfile
|
5 |
import os
|
|
|
6 |
|
7 |
class YOLOProcessor:
|
8 |
def __init__(self, model_path):
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
+
from yolov8 import YOLO
|
4 |
import tempfile
|
5 |
import os
|
6 |
+
import cv2
|
7 |
|
8 |
class YOLOProcessor:
|
9 |
def __init__(self, model_path):
|