Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/test/test_main.cpp
16354 views
1
#include "test_precomp.hpp"
2
3
static const char* extraTestDataPath =
4
#ifdef WINRT
5
NULL;
6
#else
7
getenv("OPENCV_DNN_TEST_DATA_PATH");
8
#endif
9
10
#if defined(HAVE_HPX)
11
#include <hpx/hpx_main.hpp>
12
#endif
13
14
CV_TEST_MAIN("",
15
extraTestDataPath ? (void)cvtest::addDataSearchPath(extraTestDataPath) : (void)0
16
)
17
18
namespace opencv_test
19
{
20
21
using namespace cv;
22
using namespace cv::dnn;
23
24
}
25
26