mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-17 07:04:18 +08:00
12 lines
221 B
C++
12 lines
221 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(xfeatures2d, impls, perf::printCudaInfo())
|