5d12855fad
added object detection code base on yolov5 machine vision model. also added a stat file so motion and object detection values can be monitored in real time if used with the 'watch' command.
7 lines
148 B
Bash
7 lines
148 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /etc/mow
|
|
cp ./etc/yolov5s.onnx /etc/mow/yolov5s.onnx
|
|
cp ./etc/classes.txt /etc/mow/classes.txt
|
|
cp ./.build-mow/mow /usr/bin/mow
|