Fixed the compile error in the previous commit.
This commit is contained in:
Maurice ONeal 2022-09-30 16:29:28 -04:00
parent cd4a2d0f98
commit c7a1dd3c84
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ using namespace std;
using namespace std::filesystem;
#define BUF_SZ 10
#define APP_VER "1.4.t4"
#define APP_VER "1.4.t5"
struct shared_t
{

View File

@ -24,7 +24,7 @@ struct sec_t
int pixDiff;
};
void secDiff(Mat imgA, Mat imgB, int rows, int cols, int rowOffs, int colOffs, vector<sec_t> *results, mutex *secMutex, shared_t *share);
void secDiff(const Mat &imgA, const Mat &imgB, int rows, int cols, int rowOffs, int colOffs, vector<sec_t> *results, mutex *secMutex, shared_t *share);
bool pixDiff(const uchar &pixA, const uchar &pixB, shared_t *share);
bool imgDiff(Mat prev, Mat next, Rect *block, shared_t *share);
bool moDetect(const string &buffFile, Rect *block, Mat *img, shared_t *share);