Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/dnn/perf/perf_main.cpp
16354 views
1
#include "perf_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_PERF_TEST_MAIN(dnn,
15
extraTestDataPath ? (void)cvtest::addDataSearchPath(extraTestDataPath) : (void)0
16
)
17
18