blakeblackshear.frigate/frigate/object_detection.py

234 lines
7.2 KiB
Python
Raw Normal View History

2020-02-16 04:07:54 +01:00
import datetime
2020-11-04 13:28:07 +01:00
import logging
2020-02-09 14:39:24 +01:00
import multiprocessing as mp
2020-11-04 13:28:07 +01:00
import os
import queue
2020-11-29 23:19:59 +01:00
import signal
2021-02-17 14:23:32 +01:00
import threading
from abc import ABC, abstractmethod
2020-11-04 13:28:07 +01:00
2020-02-09 14:39:24 +01:00
import numpy as np
2021-02-17 14:23:32 +01:00
from setproctitle import setproctitle
from frigate.detectors import create_detector
from frigate.detectors.detector_config import InputTensorEnum
from frigate.util.builtin import EventsPerSecond, load_labels
from frigate.util.image import SharedMemoryFrameManager
from frigate.util.services import listen
2020-02-09 14:39:24 +01:00
2020-11-04 04:26:39 +01:00
logger = logging.getLogger(__name__)
2021-02-17 14:23:32 +01:00
class ObjectDetector(ABC):
@abstractmethod
2021-02-17 14:23:32 +01:00
def detect(self, tensor_input, threshold=0.4):
pass
2021-02-17 14:23:32 +01:00
def tensor_transform(desired_shape):
# Currently this function only supports BHWC permutations
if desired_shape == InputTensorEnum.nhwc:
return None
elif desired_shape == InputTensorEnum.nchw:
return (0, 3, 1, 2)
class LocalObjectDetector(ObjectDetector):
def __init__(
self,
detector_config=None,
labels=None,
):
2020-09-13 14:46:38 +02:00
self.fps = EventsPerSecond()
if labels is None:
self.labels = {}
else:
self.labels = load_labels(labels)
if detector_config:
self.input_transform = tensor_transform(detector_config.model.input_tensor)
else:
self.input_transform = None
self.detect_api = create_detector(detector_config)
2021-02-17 14:23:32 +01:00
def detect(self, tensor_input, threshold=0.4):
detections = []
raw_detections = self.detect_raw(tensor_input)
for d in raw_detections:
if int(d[0]) < 0 or int(d[0]) >= len(self.labels):
logger.warning(f"Raw Detect returned invalid label: {d}")
continue
if d[1] < threshold:
break
2021-02-17 14:23:32 +01:00
detections.append(
(self.labels[int(d[0])], float(d[1]), (d[2], d[3], d[4], d[5]))
)
2020-09-13 14:46:38 +02:00
self.fps.update()
return detections
2020-02-09 14:39:24 +01:00
def detect_raw(self, tensor_input):
if self.input_transform:
tensor_input = np.transpose(tensor_input, self.input_transform)
return self.detect_api.detect_raw(tensor_input=tensor_input)
2020-02-09 14:39:24 +01:00
2021-02-17 14:23:32 +01:00
def run_detector(
name: str,
detection_queue: mp.Queue,
out_events: dict[str, mp.Event],
2021-02-17 14:23:32 +01:00
avg_speed,
start,
detector_config,
2021-02-17 14:23:32 +01:00
):
2020-11-04 13:28:07 +01:00
threading.current_thread().name = f"detector:{name}"
2020-12-04 13:59:03 +01:00
logger = logging.getLogger(f"detector.{name}")
logger.info(f"Starting detection process: {os.getpid()}")
2021-01-03 20:41:02 +01:00
setproctitle(f"frigate.detector.{name}")
listen()
2020-11-29 23:19:59 +01:00
stop_event = mp.Event()
2021-02-17 14:23:32 +01:00
2020-11-29 23:19:59 +01:00
def receiveSignal(signalNumber, frame):
logger.info("Signal to exit detection process...")
2020-11-29 23:19:59 +01:00
stop_event.set()
2021-02-17 14:23:32 +01:00
2020-11-29 23:19:59 +01:00
signal.signal(signal.SIGTERM, receiveSignal)
signal.signal(signal.SIGINT, receiveSignal)
frame_manager = SharedMemoryFrameManager()
object_detector = LocalObjectDetector(detector_config=detector_config)
2020-02-09 14:39:24 +01:00
outputs = {}
for name in out_events.keys():
out_shm = mp.shared_memory.SharedMemory(name=f"out-{name}", create=False)
2021-02-17 14:23:32 +01:00
out_np = np.ndarray((20, 6), dtype=np.float32, buffer=out_shm.buf)
outputs[name] = {"shm": out_shm, "np": out_np}
while not stop_event.is_set():
2020-11-29 23:19:59 +01:00
try:
connection_id = detection_queue.get(timeout=1)
2020-11-29 23:19:59 +01:00
except queue.Empty:
continue
2021-02-17 14:23:32 +01:00
input_frame = frame_manager.get(
connection_id,
(1, detector_config.model.height, detector_config.model.width, 3),
2021-02-17 14:23:32 +01:00
)
2020-02-09 14:39:24 +01:00
if input_frame is None:
logger.warning(f"Failed to get frame {connection_id} from SHM")
continue
2020-02-09 14:39:24 +01:00
# detect and send the output
start.value = datetime.datetime.now().timestamp()
detections = object_detector.detect_raw(input_frame)
2021-02-17 14:23:32 +01:00
duration = datetime.datetime.now().timestamp() - start.value
outputs[connection_id]["np"][:] = detections[:]
out_events[connection_id].set()
start.value = 0.0
2021-02-17 14:23:32 +01:00
avg_speed.value = (avg_speed.value * 9 + duration) / 10
logger.info("Exited detection process...")
2021-02-17 14:23:32 +01:00
class ObjectDetectProcess:
2021-02-17 14:23:32 +01:00
def __init__(
self,
name,
detection_queue,
out_events,
detector_config,
2021-02-17 14:23:32 +01:00
):
2020-11-04 13:28:07 +01:00
self.name = name
self.out_events = out_events
self.detection_queue = detection_queue
2021-02-17 14:23:32 +01:00
self.avg_inference_speed = mp.Value("d", 0.01)
self.detection_start = mp.Value("d", 0.0)
self.detect_process = None
self.detector_config = detector_config
self.start_or_restart()
2021-02-17 14:23:32 +01:00
def stop(self):
# if the process has already exited on its own, just return
if self.detect_process and self.detect_process.exitcode:
return
self.detect_process.terminate()
2020-11-04 04:26:39 +01:00
logging.info("Waiting for detection process to exit gracefully...")
self.detect_process.join(timeout=30)
if self.detect_process.exitcode is None:
logging.info("Detection process didn't exit. Force killing...")
self.detect_process.kill()
self.detect_process.join()
logging.info("Detection process has exited...")
2020-02-09 14:39:24 +01:00
def start_or_restart(self):
self.detection_start.value = 0.0
if (self.detect_process is not None) and self.detect_process.is_alive():
self.stop()
2021-02-17 14:23:32 +01:00
self.detect_process = mp.Process(
target=run_detector,
name=f"detector:{self.name}",
args=(
self.name,
self.detection_queue,
self.out_events,
self.avg_inference_speed,
self.detection_start,
self.detector_config,
2021-02-17 14:23:32 +01:00
),
)
2020-02-09 14:39:24 +01:00
self.detect_process.daemon = True
self.detect_process.start()
2021-02-17 14:23:32 +01:00
class RemoteObjectDetector:
def __init__(self, name, labels, detection_queue, event, model_config, stop_event):
self.labels = labels
self.name = name
self.fps = EventsPerSecond()
self.detection_queue = detection_queue
self.event = event
self.stop_event = stop_event
2020-10-11 16:40:20 +02:00
self.shm = mp.shared_memory.SharedMemory(name=self.name, create=False)
2021-02-17 14:23:32 +01:00
self.np_shm = np.ndarray(
(1, model_config.height, model_config.width, 3),
dtype=np.uint8,
buffer=self.shm.buf,
2021-02-17 14:23:32 +01:00
)
self.out_shm = mp.shared_memory.SharedMemory(
name=f"out-{self.name}", create=False
)
self.out_np_shm = np.ndarray((20, 6), dtype=np.float32, buffer=self.out_shm.buf)
def detect(self, tensor_input, threshold=0.4):
2020-02-09 14:39:24 +01:00
detections = []
if self.stop_event.is_set():
return detections
# copy input to shared memory
self.np_shm[:] = tensor_input[:]
self.event.clear()
self.detection_queue.put(self.name)
result = self.event.wait(timeout=5.0)
# if it timed out
if result is None:
return detections
for d in self.out_np_shm:
if d[1] < threshold:
break
2021-02-17 14:23:32 +01:00
detections.append(
(self.labels[int(d[0])], float(d[1]), (d[2], d[3], d[4], d[5]))
)
self.fps.update()
return detections
2021-02-17 14:23:32 +01:00
def cleanup(self):
self.shm.unlink()
2020-11-04 13:28:07 +01:00
self.out_shm.unlink()