- added fuse3 to setup.sh since imagemagic depends on it
- fixed the double program name bug in the detection log
- releasing to main
This commit is contained in:
Zii 2023-09-14 14:53:18 -04:00
parent 8f80ce34f1
commit b09ff1a19a
3 changed files with 3 additions and 3 deletions

View File

@ -2,6 +2,6 @@
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
apt update -y apt update -y
apt install -y pkg-config cmake make g++ apt install -y pkg-config cmake make g++
apt install -y ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev x264 libx264-dev libilmbase-dev qt6-base-dev qtchooser qmake6 qt6-base-dev-tools libxkbcommon-dev libfuse-dev apt install -y ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev x264 libx264-dev libilmbase-dev qt6-base-dev qtchooser qmake6 qt6-base-dev-tools libxkbcommon-dev libfuse-dev fuse3
cp ./bin/magick /usr/bin/magick cp ./bin/magick /usr/bin/magick
chmod +x /usr/bin/magick chmod +x /usr/bin/magick

View File

@ -539,7 +539,7 @@ bool DetectLoop::exec()
} }
else else
{ {
detLog(extComp.program() + " " + args.join(" ") + " --result: " + QString::number(score), shared); detLog(args.join(" ") + " --result: " + QString::number(score), shared);
if (score >= shared->imgThresh) if (score >= shared->imgThresh)
{ {

View File

@ -30,7 +30,7 @@
using namespace std; using namespace std;
#define APP_VER "3.2.t3" #define APP_VER "3.2"
#define APP_NAME "Motion Watch" #define APP_NAME "Motion Watch"
#define APP_BIN "mow" #define APP_BIN "mow"
#define REC_LOG_NAME "rec_log_lines.html" #define REC_LOG_NAME "rec_log_lines.html"