opencv/modules/nonfree/test/test_precomp.hpp

33 lines
724 B
C++
Raw Normal View History

#ifdef __GNUC__
# pragma GCC diagnostic ignored "-Wmissing-declarations"
2012-11-09 15:29:52 +08:00
# if defined __clang__ || defined __APPLE__
# pragma GCC diagnostic ignored "-Wmissing-prototypes"
# pragma GCC diagnostic ignored "-Wextra"
# endif
#endif
#ifndef __OPENCV_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__
#include <iostream>
#include "opencv2/ts.hpp"
2013-07-24 16:01:34 +08:00
#include "opencv2/ts/cuda_test.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/nonfree.hpp"
2013-07-24 16:01:34 +08:00
#include "opencv2/ts/cuda_test.hpp"
2013-04-02 17:24:00 +08:00
2013-03-16 23:34:39 +08:00
#include "opencv2/opencv_modules.hpp"
#include "cvconfig.h"
2013-04-02 17:24:00 +08:00
2013-03-16 23:34:39 +08:00
#ifdef HAVE_OPENCV_OCL
# include "opencv2/nonfree/ocl.hpp"
#endif
#ifdef HAVE_CUDA
2013-07-24 16:01:34 +08:00
# include "opencv2/nonfree/cuda.hpp"
2013-03-18 20:14:37 +08:00
#endif
#endif