Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
696 B
34 lines
696 B
// Disable some warnings which are caused with CUDA headers |
|
#pragma warning(disable: 4201 4408 4100) |
|
|
|
#include <iostream> |
|
#include <cvconfig.h> |
|
#include <opencv2/gpu/gpu.hpp> |
|
#include <opencv2/highgui/highgui.hpp> |
|
|
|
#ifdef HAVE_CUDA |
|
#include <cuda_runtime.h> |
|
#endif |
|
|
|
using namespace std; |
|
using namespace cv; |
|
|
|
int main() |
|
{ |
|
bool can_run = true; |
|
|
|
#if !defined(HAVE_CUDA) |
|
cout << "CUDA support is required (CMake key 'WITH_CUDA' must be true).\n"; |
|
can_run = false; |
|
#endif |
|
|
|
#if !defined(HAVE_TBB) |
|
cout << "TBB support is required (CMake key 'WITH_TBB' must be true).\n"; |
|
can_run = false; |
|
#endif |
|
|
|
if (!can_run) |
|
return -1; |
|
|
|
return 0; |
|
} |