cvconfig.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. #ifndef OPENCV_CVCONFIG_H_INCLUDED
  2. #define OPENCV_CVCONFIG_H_INCLUDED
  3. /* OpenCV compiled as static or dynamic libs */
  4. /* #undef BUILD_SHARED_LIBS */
  5. /* OpenCV intrinsics optimized code */
  6. #define CV_ENABLE_INTRINSICS
  7. /* OpenCV additional optimized code */
  8. /* #undef CV_DISABLE_OPTIMIZATION */
  9. /* Compile for 'real' NVIDIA GPU architectures */
  10. #define CUDA_ARCH_BIN ""
  11. /* Create PTX or BIN for 1.0 compute capability */
  12. /* #undef CUDA_ARCH_BIN_OR_PTX_10 */
  13. /* NVIDIA GPU features are used */
  14. #define CUDA_ARCH_FEATURES ""
  15. /* Compile for 'virtual' NVIDIA PTX architectures */
  16. #define CUDA_ARCH_PTX ""
  17. /* AMD's Basic Linear Algebra Subprograms Library*/
  18. /* #undef HAVE_CLAMDBLAS */
  19. /* AMD's OpenCL Fast Fourier Transform Library*/
  20. /* #undef HAVE_CLAMDFFT */
  21. /* Clp support */
  22. /* #undef HAVE_CLP */
  23. /* Cocoa API */
  24. /* #undef HAVE_COCOA */
  25. /* NVIDIA CUDA Runtime API*/
  26. /* #undef HAVE_CUDA */
  27. /* NVIDIA CUDA Basic Linear Algebra Subprograms (BLAS) API*/
  28. /* #undef HAVE_CUBLAS */
  29. /* NVIDIA CUDA Deep Neural Network (cuDNN) API*/
  30. /* #undef HAVE_CUDNN */
  31. /* NVIDIA CUDA Fast Fourier Transform (FFT) API*/
  32. /* #undef HAVE_CUFFT */
  33. /* DirectX */
  34. /* #undef HAVE_DIRECTX */
  35. /* #undef HAVE_DIRECTX_NV12 */
  36. /* #undef HAVE_D3D11 */
  37. /* #undef HAVE_D3D10 */
  38. /* #undef HAVE_D3D9 */
  39. /* Eigen Matrix & Linear Algebra Library */
  40. /* #undef HAVE_EIGEN */
  41. /* Geospatial Data Abstraction Library */
  42. /* #undef HAVE_GDAL */
  43. /* GTK+ 2.0 Thread support */
  44. /* #undef HAVE_GTHREAD */
  45. /* GTK+ 2.x toolkit */
  46. /* #undef HAVE_GTK */
  47. /* Halide support */
  48. /* #undef HAVE_HALIDE */
  49. /* Vulkan support */
  50. /* #undef HAVE_VULKAN */
  51. /* Define to 1 if you have the <inttypes.h> header file. */
  52. /* #undef HAVE_INTTYPES_H */
  53. /* Intel Integrated Performance Primitives */
  54. /* #undef HAVE_IPP */
  55. /* #undef HAVE_IPP_ICV */
  56. /* #undef HAVE_IPP_IW */
  57. /* #undef HAVE_IPP_IW_LL */
  58. /* JPEG-2000 codec */
  59. /* #undef HAVE_OPENJPEG */
  60. /* #undef HAVE_JASPER */
  61. /* IJG JPEG codec */
  62. #define HAVE_JPEG
  63. /* libpng/png.h needs to be included */
  64. /* #undef HAVE_LIBPNG_PNG_H */
  65. /* GDCM DICOM codec */
  66. /* #undef HAVE_GDCM */
  67. /* NVIDIA Video Decoding API*/
  68. /* #undef HAVE_NVCUVID */
  69. /* NVIDIA Video Encoding API*/
  70. /* #undef HAVE_NVCUVENC */
  71. /* OpenCL Support */
  72. /* #undef HAVE_OPENCL */
  73. /* #undef HAVE_OPENCL_STATIC */
  74. /* #undef HAVE_OPENCL_SVM */
  75. /* NVIDIA OpenCL D3D Extensions support */
  76. /* #undef HAVE_OPENCL_D3D11_NV */
  77. /* OpenEXR codec */
  78. /* #undef HAVE_OPENEXR */
  79. /* OpenGL support*/
  80. /* #undef HAVE_OPENGL */
  81. /* PNG codec */
  82. #define HAVE_PNG
  83. /* Posix threads (pthreads) */
  84. #define HAVE_PTHREAD
  85. /* parallel_for with pthreads */
  86. #define HAVE_PTHREADS_PF
  87. /* Qt support */
  88. /* #undef HAVE_QT */
  89. /* Qt OpenGL support */
  90. /* #undef HAVE_QT_OPENGL */
  91. /* Intel Threading Building Blocks */
  92. /* #undef HAVE_TBB */
  93. /* Ste||ar Group High Performance ParallelX */
  94. /* #undef HAVE_HPX */
  95. /* TIFF codec */
  96. /* #undef HAVE_TIFF */
  97. /* Win32 UI */
  98. /* #undef HAVE_WIN32UI */
  99. /* Define if your processor stores words with the most significant byte
  100. first (like Motorola and SPARC, unlike Intel and VAX). */
  101. /* #undef WORDS_BIGENDIAN */
  102. /* VA library (libva) */
  103. /* #undef HAVE_VA */
  104. /* Intel VA-API/OpenCL */
  105. /* #undef HAVE_VA_INTEL */
  106. /* Lapack */
  107. /* #undef HAVE_LAPACK */
  108. /* Library was compiled with functions instrumentation */
  109. /* #undef ENABLE_INSTRUMENTATION */
  110. /* OpenVX */
  111. /* #undef HAVE_OPENVX */
  112. /* OpenCV trace utilities */
  113. #define OPENCV_TRACE
  114. /* Library QR-code decoding */
  115. #define HAVE_QUIRC
  116. #endif // OPENCV_CVCONFIG_H_INCLUDED