mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
12 lines
215 B
C++
12 lines
215 B
C++
#include "perf_precomp.hpp"
|
|
#include "opencv2/ts/cuda_perf.hpp"
|
|
|
|
static const char * impls[] = {
|
|
#ifdef HAVE_CUDA
|
|
"cuda",
|
|
#endif
|
|
"plain"
|
|
};
|
|
|
|
CV_PERF_TEST_MAIN_WITH_IMPLS(photo, impls, perf::printCudaInfo())
|