增加了单帧入侵判断及yoloV10
This commit is contained in:
@ -19,7 +19,18 @@ from collections import OrderedDict
|
||||
from event_time_specify import devide_motion_state #, state_measure
|
||||
|
||||
import sys
|
||||
sys.path.append(r"D:\DetectTracking")
|
||||
|
||||
|
||||
FILE = Path(__file__).resolve()
|
||||
ROOT = FILE.parents[1] # YOLOv5 root directory
|
||||
if str(ROOT) not in sys.path:
|
||||
sys.path.append(str(ROOT)) # add ROOT to PATH
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
from imgs_inference import run_yolo
|
||||
from tracking.utils.read_data import read_weight_sensor
|
||||
|
||||
|
Reference in New Issue
Block a user