mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
cc05493730
Conflicts: cmake/OpenCVDetectAndroidSDK.cmake cmake/OpenCVGenAndroidMK.cmake cmake/OpenCVModule.cmake cmake/templates/OpenCV.mk.in cmake/templates/OpenCVConfig.cmake.in doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.rst modules/cudabgsegm/src/cuda/mog.cu modules/imgproc/perf/opencl/perf_filters.cpp modules/imgproc/src/opencl/filterSep_singlePass.cl modules/nonfree/CMakeLists.txt modules/nonfree/perf/perf_precomp.hpp modules/ocl/perf/perf_haar.cpp modules/ocl/src/filtering.cpp modules/ocl/src/opencl/bgfg_mog.cl modules/superres/CMakeLists.txt modules/superres/src/btv_l1_cuda.cpp modules/superres/src/cuda/btv_l1_gpu.cu modules/superres/src/frame_source.cpp modules/superres/src/input_array_utility.cpp modules/superres/src/optical_flow.cpp modules/superres/src/precomp.hpp samples/gpu/CMakeLists.txt samples/gpu/brox_optical_flow.cpp samples/gpu/super_resolution.cpp
33 lines
720 B
C++
33 lines
720 B
C++
#ifdef __GNUC__
|
|
# pragma GCC diagnostic ignored "-Wmissing-declarations"
|
|
# if defined __clang__ || defined __APPLE__
|
|
# pragma GCC diagnostic ignored "-Wmissing-prototypes"
|
|
# pragma GCC diagnostic ignored "-Wextra"
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef __OPENCV_PERF_PRECOMP_HPP__
|
|
#define __OPENCV_PERF_PRECOMP_HPP__
|
|
|
|
#include "cvconfig.h"
|
|
|
|
#include "opencv2/ts.hpp"
|
|
#include "opencv2/nonfree.hpp"
|
|
#include "opencv2/highgui.hpp"
|
|
|
|
#include "opencv2/opencv_modules.hpp"
|
|
|
|
#ifdef HAVE_OPENCV_OCL
|
|
# include "opencv2/nonfree/ocl.hpp"
|
|
#endif
|
|
|
|
#ifdef HAVE_CUDA
|
|
# include "opencv2/nonfree/cuda.hpp"
|
|
#endif
|
|
|
|
#ifdef GTEST_CREATE_SHARED_LIBRARY
|
|
#error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
|
|
#endif
|
|
|
|
#endif
|