draw.cpp
10.3 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright 2012 The MITRE Corporation *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <opencv2/highgui/highgui.hpp>
#include "openbr_internal.h"
#include "openbr/core/opencvutils.h"
using namespace cv;
namespace br
{
/*!
* \ingroup transforms
* \brief Renders metadata onto the image.
*
* The inPlace argument controls whether or not the image is cloned before the metadata is drawn.
*
* \author Josh Klontz \cite jklontz
*/
class DrawTransform : public UntrainableTransform
{
Q_OBJECT
Q_PROPERTY(bool verbose READ get_verbose WRITE set_verbose RESET reset_verbose STORED false)
Q_PROPERTY(bool points READ get_points WRITE set_points RESET reset_points STORED false)
Q_PROPERTY(bool rects READ get_rects WRITE set_rects RESET reset_rects STORED false)
Q_PROPERTY(bool inPlace READ get_inPlace WRITE set_inPlace RESET reset_inPlace STORED false)
BR_PROPERTY(bool, verbose, false)
BR_PROPERTY(bool, points, true)
BR_PROPERTY(bool, rects, true)
BR_PROPERTY(bool, inPlace, false)
void project(const Template &src, Template &dst) const
{
const Scalar color(0,255,0);
const Scalar verboseColor(255, 255, 0);
dst.m() = inPlace ? src.m() : src.m().clone();
if (points) {
const QList<Point2f> pointsList = OpenCVUtils::toPoints(src.file.namedPoints() + src.file.points());
for (int i=0; i<pointsList.size(); i++) {
const Point2f &point = pointsList[i];
circle(dst, point, 3, color, -1);
if (verbose) putText(dst, QString::number(i).toStdString(), point, FONT_HERSHEY_SIMPLEX, 0.5, verboseColor, 1);
}
}
if (rects) {
foreach (const Rect &rect, OpenCVUtils::toRects(src.file.namedRects() + src.file.rects()))
rectangle(dst, rect, color);
}
}
};
BR_REGISTER(Transform, DrawTransform)
/*!
* \ingroup transforms
* \brief Draw the value of the specified property at the specified point on the image
*
* The inPlace argument controls whether or not the image is cloned before it is drawn on.
*
* \author Charles Otto \cite caotto
*/
class DrawPropertyPointTransform : public UntrainableTransform
{
Q_OBJECT
Q_PROPERTY(QString propName READ get_propName WRITE set_propName RESET reset_propName STORED false)
Q_PROPERTY(QString pointName READ get_pointName WRITE set_pointName RESET reset_pointName STORED false)
Q_PROPERTY(bool inPlace READ get_inPlace WRITE set_inPlace RESET reset_inPlace STORED false)
BR_PROPERTY(QString, propName, "")
BR_PROPERTY(QString, pointName, "")
BR_PROPERTY(bool, inPlace, false)
void project(const Template &src, Template &dst) const
{
dst = src;
if (propName.isEmpty() || pointName.isEmpty())
return;
dst.m() = inPlace ? src.m() : src.m().clone();
const Scalar textColor(255, 255, 0);
QVariant prop = dst.file.value(propName);
if (!prop.canConvert(QVariant::String))
return;
QString propString = prop.toString();
QVariant point = dst.file.value(pointName);
if (!point.canConvert(QVariant::PointF))
return;
QPointF targetPoint = point.toPointF();
Point2f cvPoint =OpenCVUtils::toPoint(targetPoint);
std::string text = propName.toStdString() + ": " + propString.toStdString();
putText(dst, text, cvPoint, FONT_HERSHEY_SIMPLEX, 0.5, textColor, 1);
}
};
BR_REGISTER(Transform, DrawPropertyPointTransform)
/*!
* \ingroup transforms
* \brief Draw the values of a list of properties at the specified point on the image
*
* The inPlace argument controls whether or not the image is cloned before it is drawn on.
*
* \author Charles Otto \cite caotto
*/
class DrawPropertiesPointTransform : public UntrainableTransform
{
Q_OBJECT
Q_PROPERTY(QStringList propNames READ get_propNames WRITE set_propNames RESET reset_propNames STORED false)
Q_PROPERTY(QString pointName READ get_pointName WRITE set_pointName RESET reset_pointName STORED false)
Q_PROPERTY(bool inPlace READ get_inPlace WRITE set_inPlace RESET reset_inPlace STORED false)
BR_PROPERTY(QStringList, propNames, QStringList())
BR_PROPERTY(QString, pointName, "")
BR_PROPERTY(bool, inPlace, false)
void project(const Template &src, Template &dst) const
{
dst = src;
if (propNames.isEmpty() || pointName.isEmpty())
return;
dst.m() = inPlace ? src.m() : src.m().clone();
QVariant point = dst.file.value(pointName);
if (!point.canConvert(QVariant::PointF))
return;
QPointF targetPoint = point.toPointF();
Point2f cvPoint =OpenCVUtils::toPoint(targetPoint);
const Scalar textColor(255, 255, 0);
std::string outString = "";
foreach (const QString & propName, propNames)
{
QVariant prop = dst.file.value(propName);
if (!prop.canConvert(QVariant::String))
continue;
QString propString = prop.toString();
outString += propName.toStdString() + ": " + propString.toStdString() + " ";
}
if (outString.empty())
return;
putText(dst, outString, cvPoint, FONT_HERSHEY_SIMPLEX, 0.5, textColor, 1);
}
};
BR_REGISTER(Transform, DrawPropertiesPointTransform)
/*!
* \ingroup transforms
* \brief Draws a grid on the image
* \author Josh Klontz \cite jklontz
*/
class DrawGridTransform : public UntrainableTransform
{
Q_OBJECT
Q_PROPERTY(int rows READ get_rows WRITE set_rows RESET reset_rows STORED false)
Q_PROPERTY(int columns READ get_columns WRITE set_columns RESET reset_columns STORED false)
Q_PROPERTY(int r READ get_r WRITE set_r RESET reset_r STORED false)
Q_PROPERTY(int g READ get_g WRITE set_g RESET reset_g STORED false)
Q_PROPERTY(int b READ get_b WRITE set_b RESET reset_b STORED false)
BR_PROPERTY(int, rows, 0)
BR_PROPERTY(int, columns, 0)
BR_PROPERTY(int, r, 196)
BR_PROPERTY(int, g, 196)
BR_PROPERTY(int, b, 196)
void project(const Template &src, Template &dst) const
{
Mat m = src.m().clone();
float rowStep = 1.f * m.rows / (rows+1);
float columnStep = 1.f * m.cols / (columns+1);
int thickness = qMin(m.rows, m.cols) / 256;
for (float row = rowStep/2; row < m.rows; row += rowStep)
line(m, Point(0, row), Point(m.cols, row), Scalar(r, g, b), thickness, CV_AA);
for (float column = columnStep/2; column < m.cols; column += columnStep)
line(m, Point(column, 0), Point(column, m.rows), Scalar(r, g, b), thickness, CV_AA);
dst = m;
}
};
BR_REGISTER(Transform, DrawGridTransform)
/*!
* \ingroup transforms
* \brief Computes the mean of a set of templates.
* \note Suitable for visualization only as it sets every projected template to the mean template.
* \author Scott Klum \cite sklum
*/
class MeanTransform : public Transform
{
Q_OBJECT
Mat mean;
void train(const TemplateList &data)
{
mean = Mat::zeros(data[0].m().rows,data[0].m().cols,CV_32F);
for (int i = 0; i < data.size(); i++) {
Mat converted;
data[i].m().convertTo(converted, CV_32F);
mean += converted;
}
mean /= data.size();
}
void project(const Template &src, Template &dst) const
{
dst = src;
dst.m() = mean;
}
};
BR_REGISTER(Transform, MeanTransform)
// TODO: re-implement EditTransform using Qt
#if 0
/*!
* \ingroup transforms
* \brief Remove landmarks.
* \author Josh Klontz \cite jklontz
*/
class EditTransform : public UntrainableTransform
{
Q_OBJECT
Transform *draw;
static Template currentTemplate;
static QMutex currentTemplateLock;
void init()
{
draw = make("Draw");
Globals->setProperty("parallelism", "0"); // Can only work in single threaded mode
}
void project(const Template &src, Template &dst) const
{
dst = src;
if (Globals->parallelism) {
qWarning("Edit::project() only works in single threaded mode.");
return;
}
currentTemplateLock.lock();
currentTemplate = src;
OpenCVUtils::showImage(src, "Edit", false);
setMouseCallback("Edit", mouseCallback, (void*)this);
mouseEvent(0, 0, 0, 0);
waitKey(-1);
dst = currentTemplate;
currentTemplateLock.unlock();
}
static void mouseCallback(int event, int x, int y, int flags, void *userdata)
{
((const EditTransform*)userdata)->mouseEvent(event, x, y, flags);
}
void mouseEvent(int event, int x, int y, int flags) const
{
(void) event;
if (flags) {
QList<QRectF> rects = currentTemplate.file.rects();
for (int i=rects.size()-1; i>=0; i--)
if (rects[i].contains(x,y))
rects.removeAt(i);
currentTemplate.file.setRects(rects);
}
Template temp;
draw->project(currentTemplate, temp);
OpenCVUtils::showImage(temp, "Edit", false);
}
};
Template EditTransform::currentTemplate;
QMutex EditTransform::currentTemplateLock;
BR_REGISTER(Transform, EditTransform)
#endif
} // namespace br
#include "draw.moc"