|
@ -5,6 +5,7 @@ from threading import Event, Thread |
|
|
from typing import List |
|
|
from typing import List |
|
|
|
|
|
|
|
|
import numpy as np |
|
|
import numpy as np |
|
|
|
|
|
import torch |
|
|
from PyQt5.QtCore import QThread, pyqtSlot, pyqtSignal, QUrl, QDir, pyqtProperty |
|
|
from PyQt5.QtCore import QThread, pyqtSlot, pyqtSignal, QUrl, QDir, pyqtProperty |
|
|
#from icecream import ic |
|
|
#from icecream import ic |
|
|
|
|
|
|
|
@ -60,6 +61,7 @@ class Core(QThread): |
|
|
def __detection(self): |
|
|
def __detection(self): |
|
|
while self.__is_detecting: |
|
|
while self.__is_detecting: |
|
|
try: |
|
|
try: |
|
|
|
|
|
torch.cuda.empty_cache() |
|
|
source = self.__processing_source |
|
|
source = self.__processing_source |
|
|
roi = self.__detection_roi |
|
|
roi = self.__detection_roi |
|
|
frame = source.get_frame() |
|
|
frame = source.get_frame() |
|
|