perf_main.cpp 415 B

1234567891011121314
  1. // This file is part of OpenCV project.
  2. // It is subject to the license terms in the LICENSE file found in the top-level directory
  3. // of this distribution and at http://opencv.org/license.html.
  4. #include "perf_precomp.hpp"
  5. #include "opencv2/ts/cuda_perf.hpp"
  6. static const char * impls[] = {
  7. #ifdef HAVE_CUDA
  8. "cuda",
  9. #endif
  10. "plain"
  11. };
  12. CV_PERF_TEST_MAIN_WITH_IMPLS(xfeatures2d, impls, perf::printCudaInfo())