Object Detection
5.0
Image Processing Using Qt and Opencv
tst_testwork.cpp
1
#include <QtTest>
2
#include <QCoreApplication>
3
4
// add necessary includes here
5
6
class
TestWork
:
public
QObject
7
{
8
Q_OBJECT
9
10
public
:
11
TestWork
();
12
~
TestWork
();
13
14
private
slots:
15
void
test_case1();
16
17
};
18
19
TestWork::TestWork()
20
{
21
22
}
23
24
TestWork::~TestWork()
25
{
26
27
}
28
29
void
TestWork::test_case1()
30
{
31
32
}
33
34
QTEST_MAIN(
TestWork
)
35
36
#include "tst_testwork.moc"
TestWork
Definition:
tst_testwork.cpp:6
object-detector
src
CircleDetector
Tests
DetectColorTest
tst_testwork.cpp
Generated by
1.8.13