cvconfig.h 3.2 KB

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