v3.0.0
The app in it's current iteration is stable in testing. Releasing to master.
This commit is contained in:
parent
4300651a52
commit
ff5f95f445
|
@ -49,7 +49,7 @@ max_event_secs = 30
|
||||||
# this is the maximum amount of secs of video footage that can be
|
# this is the maximum amount of secs of video footage that can be
|
||||||
# recorded in a motion event.
|
# recorded in a motion event.
|
||||||
#
|
#
|
||||||
img_thresh = 10000
|
img_thresh = 8000
|
||||||
# this application uses 'magick compare' to score the differences between
|
# this application uses 'magick compare' to score the differences between
|
||||||
# two, one second gapped snapshots of the camera stream. any image pairs
|
# two, one second gapped snapshots of the camera stream. any image pairs
|
||||||
# that score greater than this value is considered motion and queues up
|
# that score greater than this value is considered motion and queues up
|
||||||
|
|
|
@ -19,7 +19,7 @@ Camera::Camera(QObject *parent) : QObject(parent)
|
||||||
shared.camName.clear();
|
shared.camName.clear();
|
||||||
|
|
||||||
shared.retCode = 0;
|
shared.retCode = 0;
|
||||||
shared.imgThresh = 10000;
|
shared.imgThresh = 8000;
|
||||||
shared.maxEvents = 100;
|
shared.maxEvents = 100;
|
||||||
shared.maxLogSize = 100000;
|
shared.maxLogSize = 100000;
|
||||||
shared.skipCmd = false;
|
shared.skipCmd = false;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
#define APP_VER "3.0.t19"
|
#define APP_VER "3.0.0"
|
||||||
#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"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user