Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/photo/perf/perf_main.cpp
16337 views
1
#include "perf_precomp.hpp"
2
#include "opencv2/ts/cuda_perf.hpp"
3
4
static const char * impls[] = {
5
#ifdef HAVE_CUDA
6
"cuda",
7
#endif
8
"plain"
9
};
10
11
#if defined(HAVE_HPX)
12
#include <hpx/hpx_main.hpp>
13
#endif
14
15
CV_PERF_TEST_MAIN_WITH_IMPLS(photo, impls, perf::printCudaInfo())
16
17