2022-09-22 20:57:46 -04:00
|
|
|
// This file is part of Motion Watch.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
// Motion Watch is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
// Motion Watch is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
#include "mo_detect.h"
|
|
|
|
#include "obj_detect.h"
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
void detectLoop(shared_t *share)
|
2022-04-14 09:45:54 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
vector<string> bufFiles;
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
while (!bufFiles.empty() || !share->recLoopWait)
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
bufFiles = lsFilesInDir(share->buffDir, "." + share->vidExt);
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
if ((bufFiles.size() >= 2) || (share->recLoopWait && !bufFiles.empty()))
|
2022-09-11 12:56:32 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
Rect blockArea;
|
|
|
|
Mat blockImg;
|
2022-09-11 12:56:32 -04:00
|
|
|
|
2022-09-24 09:22:45 -04:00
|
|
|
auto fullPath = cleanDir(share->buffDir) + "/" + bufFiles[0];
|
|
|
|
|
|
|
|
if (moDetect(fullPath, &blockArea, &blockImg, share))
|
2022-07-08 15:24:45 -04:00
|
|
|
{
|
2022-09-27 18:10:04 -04:00
|
|
|
if (objectInImage(blockImg, blockArea, share))
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
share->skipCmd = true;
|
2022-07-08 15:24:45 -04:00
|
|
|
|
2022-09-24 09:22:45 -04:00
|
|
|
wrOut(fullPath, share);
|
2022-09-22 20:57:46 -04:00
|
|
|
}
|
|
|
|
else
|
2022-07-08 15:24:45 -04:00
|
|
|
{
|
2022-09-24 09:22:45 -04:00
|
|
|
remove(fullPath.c_str());
|
2022-07-08 15:24:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-24 09:22:45 -04:00
|
|
|
remove(fullPath.c_str());
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
|
|
|
}
|
2022-09-22 20:57:46 -04:00
|
|
|
else
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
sleep(1);
|
2022-08-12 21:46:36 -04:00
|
|
|
}
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
2022-07-08 15:24:45 -04:00
|
|
|
}
|
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
void recLoop(shared_t *share)
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
while (rdConf(share))
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-23 21:50:06 -04:00
|
|
|
createDirTree(share->buffDir);
|
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
auto bufPath = cleanDir(share->buffDir) + "/%03d." + share->vidExt;
|
|
|
|
auto secs = to_string(share->secs);
|
|
|
|
auto limSecs = to_string(share->secs + 3);
|
|
|
|
auto cmd = "timeout -k 1 " + limSecs + " ffmpeg -hide_banner -i " + share->recordUrl + " -y -vcodec copy -map 0 -segment_time 00:00:10 -f segment -t " + secs + " " + bufPath;
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
thread th2(detectLoop, share);
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
system(cmd.c_str());
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
share->recLoopWait = true;
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
th2.join();
|
2022-07-28 10:30:07 -04:00
|
|
|
|
2022-09-29 11:37:10 -04:00
|
|
|
ofstream file(string(cleanDir(share->buffDir) + "/stat").c_str());
|
|
|
|
|
2022-09-29 14:52:42 -04:00
|
|
|
file << share->stat;
|
2022-09-29 11:37:10 -04:00
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
if (!share->skipCmd)
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
system(share->postCmd.c_str());
|
2022-08-12 21:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
2022-07-08 15:24:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
struct shared_t sharedRes;
|
|
|
|
|
2022-07-08 15:24:45 -04:00
|
|
|
sharedRes.conf = parseForParam("-c", argc, argv, false);
|
|
|
|
|
|
|
|
if (parseForParam("-h", argc, argv, true) == "true")
|
2022-04-14 09:45:54 -04:00
|
|
|
{
|
2022-09-23 21:50:06 -04:00
|
|
|
cout << "Motion Watch " << APP_VER << endl << endl;
|
2022-09-22 20:57:46 -04:00
|
|
|
cout << "Usage: mow <argument>" << endl << endl;
|
|
|
|
cout << "-h : display usage information about this application." << endl;
|
|
|
|
cout << "-c : path to the config file." << endl;
|
2022-09-23 21:50:06 -04:00
|
|
|
cout << "-v : display the current version." << endl;
|
|
|
|
}
|
|
|
|
if (parseForParam("-v", argc, argv, true) == "true")
|
|
|
|
{
|
|
|
|
cout << APP_VER << endl;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
2022-07-08 15:24:45 -04:00
|
|
|
else if (sharedRes.conf.empty())
|
2022-04-14 09:45:54 -04:00
|
|
|
{
|
2022-08-12 21:46:36 -04:00
|
|
|
cerr << "err: A config file was not given in -c" << endl;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-22 20:57:46 -04:00
|
|
|
sharedRes.retCode = 0;
|
|
|
|
sharedRes.tmpId = 0;
|
|
|
|
sharedRes.recLoopWait = false;
|
|
|
|
sharedRes.skipCmd = false;
|
|
|
|
sharedRes.init = true;
|
2022-08-12 21:46:36 -04:00
|
|
|
|
|
|
|
thread th1(recLoop, &sharedRes);
|
|
|
|
|
|
|
|
th1.join();
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-07-08 15:24:45 -04:00
|
|
|
return sharedRes.retCode;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
|
|
|
|
2022-07-08 15:24:45 -04:00
|
|
|
return EINVAL;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|