save clips for tracked objects

This commit is contained in:
Blake Blackshear
2020-07-09 06:57:16 -05:00
parent 53ccc903da
commit 7383db60b0
6 changed files with 223 additions and 5 deletions

View File

@@ -24,6 +24,7 @@ RUN apt -qq update && apt -qq install --no-install-recommends -y \
numpy \
imutils \
scipy \
psutil \
&& python3.7 -m pip install -U \
Flask \
paho-mqtt \
@@ -49,6 +50,8 @@ RUN wget -q https://dl.google.com/coral/canned_models/coco_labels.txt -O /labelm
RUN wget -q https://github.com/google-coral/edgetpu/raw/master/test_data/ssd_mobilenet_v2_coco_quant_postprocess.tflite -O /cpu_model.tflite
RUN mkdir /cache && mkdir /clips
WORKDIR /opt/frigate/
ADD frigate frigate/
COPY detect_objects.py .