2012-06-08 16:54:17 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# pragma GCC diagnostic ignored "-Wmissing-declarations"
|
2012-07-05 14:56:31 +02:00
|
|
|
# pragma GCC diagnostic ignored "-Wmissing-prototypes" //OSX
|
2012-06-08 16:54:17 +02:00
|
|
|
#endif
|
|
|
|
|
2012-05-22 12:29:58 +02:00
|
|
|
#ifndef __OPENCV_PERF_CPU_PRECOMP_HPP__
|
|
|
|
#define __OPENCV_PERF_CPU_PRECOMP_HPP__
|
2012-05-22 10:29:08 +02:00
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
2012-05-22 12:29:58 +02:00
|
|
|
|
2012-05-22 10:29:08 +02:00
|
|
|
#include "cvconfig.h"
|
2012-05-22 12:29:58 +02:00
|
|
|
|
2012-05-22 10:29:08 +02:00
|
|
|
#include "opencv2/ts/ts.hpp"
|
|
|
|
#include "opencv2/ts/ts_perf.hpp"
|
2012-05-22 12:29:58 +02:00
|
|
|
|
2012-05-22 10:29:08 +02:00
|
|
|
#include "opencv2/core/core.hpp"
|
|
|
|
#include "opencv2/highgui/highgui.hpp"
|
|
|
|
#include "opencv2/gpu/gpu.hpp"
|
2012-05-22 12:29:58 +02:00
|
|
|
#include "opencv2/imgproc/imgproc.hpp"
|
|
|
|
#include "opencv2/video/video.hpp"
|
|
|
|
#include "opencv2/calib3d/calib3d.hpp"
|
|
|
|
#include "opencv2/nonfree/nonfree.hpp"
|
2012-06-05 15:32:04 +02:00
|
|
|
#include "opencv2/legacy/legacy.hpp"
|
2012-05-22 12:29:58 +02:00
|
|
|
|
2012-05-22 10:29:08 +02:00
|
|
|
#include "perf_utility.hpp"
|
|
|
|
|
2012-06-07 19:21:29 +02:00
|
|
|
#ifdef GTEST_CREATE_SHARED_LIBRARY
|
2012-05-22 10:29:08 +02:00
|
|
|
#error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|