2013-02-25 18:33:00 +08:00
|
|
|
#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__
|
|
|
|
|
|
|
|
#ifdef HAVE_CVCONFIG_H
|
|
|
|
#include "cvconfig.h"
|
|
|
|
#endif
|
|
|
|
|
2013-03-22 00:59:18 +08:00
|
|
|
#include "opencv2/core.hpp"
|
2013-02-25 18:33:00 +08:00
|
|
|
#include "opencv2/core/gpumat.hpp"
|
|
|
|
#include "opencv2/ts/ts_perf.hpp"
|
2013-03-15 18:09:10 +08:00
|
|
|
#include "opencv2/ts/gpu_perf.hpp"
|
2013-03-22 00:59:18 +08:00
|
|
|
#include "opencv2/superres.hpp"
|
2013-02-25 18:33:00 +08:00
|
|
|
#include "opencv2/superres/optical_flow.hpp"
|
|
|
|
|
|
|
|
#ifdef GTEST_CREATE_SHARED_LIBRARY
|
|
|
|
#error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|