-
Notifications
You must be signed in to change notification settings - Fork 2
/
StandardTrackingModule.cpp
94 lines (74 loc) · 2.5 KB
/
StandardTrackingModule.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* Camera Mouse Suite
* Copyright (C) 2015, Andrew Kurauchi
*
* This program 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.
*
* This program 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <qdebug.h>
#include <opencv2/video/tracking.hpp>
#include "StandardTrackingModule.h"
#include "asmOpenCV.h"
namespace CMS {
StandardTrackingModule::StandardTrackingModule() :
sanityCheck(this),
initialized(false),
winSize(10, 10),
criteria(cv::TermCriteria::COUNT | cv::TermCriteria::EPS, 20, 0.03),
imageSize(0,0)
{
}
Point StandardTrackingModule::track(cv::Mat &frame)
{
sanityCheck.checkInitialized();
sanityCheck.checkFrameNotEmpty(frame);
sanityCheck.checkFrameSize(frame);
cv::Mat grey = ASM::convertToGray(frame);
//SwapPoints(ref _current_track_points[0], ref _last_track_points[0]);
std::vector<uchar> featuresFound;
cv::Mat err;
std::vector<cv::Point2f> currentTrackPoints;
cv::calcOpticalFlowPyrLK(prevGrey, grey, prevTrackPoints, currentTrackPoints,
featuresFound, err, winSize, 3, criteria);
Point imagePoint;
sanityCheck.limitTPDelta(currentTrackPoints[0], prevTrackPoints[0]);
if (featuresFound[0])
{
imagePoint = Point(currentTrackPoints[0]);
}
prevGrey = grey;
prevTrackPoints = currentTrackPoints;
return imagePoint;
}
void StandardTrackingModule::setTrackPoint(cv::Mat &frame, Point point)
{
sanityCheck.checkFrameNotEmpty(frame);
imageSize = frame.size();
if (point.X() < 0 || point.X() >= imageSize.width ||
point.Y() < 0 || point.Y() >= imageSize.height)
{
return;
}
initialized = true;
prevTrackPoints = std::vector<cv::Point2f>();
prevTrackPoints.push_back(point.asCVPoint());
prevGrey = ASM::convertToGray(frame);
}
cv::Size StandardTrackingModule::getImageSize()
{
return imageSize;
}
bool StandardTrackingModule::isInitialized()
{
return initialized;
}
} // namespace CMS