forked from AlexandreCampo/useTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Capture.cpp
193 lines (162 loc) · 4.63 KB
/
Capture.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*----------------------------------------------------------------------------*/
/* Copyright (C) 2015 Alexandre Campo */
/* */
/* This file is part of USE Tracker. */
/* */
/* USE Tracker 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. */
/* */
/* USE Tracker 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 USE Tracker. If not, see <http://www.gnu.org/licenses/>. */
/*----------------------------------------------------------------------------*/
#include "Capture.h"
Capture::Capture()
{
// std::cout << "Setting correct parent ptr for calib" << std::endl;
calibration.capture = this;
}
void Capture::CalibrationLoadXML (cv::FileNode& fn)
{
// method with extra checks
calibration.CalibrationLoadXML (fn);
}
void Capture::CalibrationSaveXML (cv::FileStorage& fs)
{
calibration.SaveXML (fs);
}
void Capture::CalibrationStart ()
{
calibration.Start();
}
void Capture::CalibrationReset ()
{
calibration.Reset();
}
cv::Mat Capture::CalibrationGetFrame()
{
return frame;
}
void Capture::CalibrationOutputHud(cv::Mat& hud)
{
calibration.OutputHud(hud);
}
void Capture::Calibrate()
{
calibration.Calibrate();
}
void Capture::CalibrationSetBoardType(int type)
{
if (type == 0)
{
calibration.pattern = CaptureCalibration::CHESSBOARD;
calibration.patternString = "CHESSBOARD";
}
else if (type == 1)
{
calibration.pattern = CaptureCalibration::CIRCLES_GRID;
calibration.patternString = "CIRCLES_GRID";
}
else if (type == 2)
{
calibration.pattern = CaptureCalibration::ASYMMETRIC_CIRCLES_GRID;
calibration.patternString = "ASYMMETRIC_CIRCLES_GRID";
}
}
void Capture::CalibrationSetBoardWidth(int w)
{
calibration.boardSize.width = w;
}
void Capture::CalibrationSetBoardHeight(int h)
{
calibration.boardSize.height = h;
}
void Capture::CalibrationSetSquareSize(int size)
{
calibration.squareSize = ((float)size / 1000.0);
}
void Capture::CalibrationSetFramesCount(int framesCount)
{
calibration.nrFrames = framesCount;
}
void Capture::CalibrationSetAspect(float aspect)
{
calibration.aspectRatio = aspect;
}
void Capture::CalibrationSetZeroTangentDist(bool zeroTangentDist)
{
calibration.zeroTangentDist = zeroTangentDist;
calibration.UpdateFlags();
}
void Capture::CalibrationSetFixPrincipalPoint(bool fixPrincipalPoint)
{
calibration.fixPrincipalPoint = fixPrincipalPoint;
calibration.UpdateFlags();
}
void Capture::CalibrationSetFlipVertical(bool flipVertical)
{
calibration.flipVertical = flipVertical;
calibration.UpdateFlags();
}
void Capture::CalibrationSetFrameDelay (float delay)
{
calibration.delay = delay;
}
int Capture::CalibrationGetBoardType()
{
switch (calibration.pattern)
{
case CaptureCalibration::CHESSBOARD :
return 0;
case CaptureCalibration::CIRCLES_GRID :
return 1;
case CaptureCalibration::ASYMMETRIC_CIRCLES_GRID :
return 2;
}
}
int Capture::CalibrationGetBoardWidth()
{
return calibration.boardSize.width;
}
int Capture::CalibrationGetBoardHeight()
{
return calibration.boardSize.height;
}
int Capture::CalibrationGetSquareSize()
{
return int(calibration.squareSize * 1000.0);
}
int Capture::CalibrationGetFramesCount()
{
return calibration.nrFrames;
}
int Capture::CalibrationGetAspectNum()
{
return 0;
}
int Capture::CalibrationGetAspectDen()
{
return 0;
}
float Capture::CalibrationGetFrameDelay()
{
return calibration.delay;
}
bool Capture::CalibrationGetZeroTangentDist()
{
return calibration.zeroTangentDist;
}
bool Capture::CalibrationGetFixPrincipalPoint()
{
return calibration.fixPrincipalPoint;
}
bool Capture::CalibrationGetFlipVertical()
{
return calibration.flipVertical;
}