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
|
|
|
|
|
2011-09-07 15:16:07 +02:00
|
|
|
#ifndef __OPENCV_PERF_PRECOMP_HPP__
|
|
|
|
#define __OPENCV_PERF_PRECOMP_HPP__
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <iostream>
|
2012-05-23 14:58:01 +02:00
|
|
|
|
2011-09-07 15:16:07 +02:00
|
|
|
#include "cvconfig.h"
|
2012-05-23 14:58:01 +02:00
|
|
|
|
2011-09-07 15:16:07 +02:00
|
|
|
#include "opencv2/ts/ts.hpp"
|
2011-12-28 13:53:08 +01:00
|
|
|
#include "opencv2/ts/ts_perf.hpp"
|
2012-05-23 14:58:01 +02:00
|
|
|
|
2011-09-07 15:16:07 +02:00
|
|
|
#include "opencv2/core/core.hpp"
|
|
|
|
#include "opencv2/highgui/highgui.hpp"
|
|
|
|
#include "opencv2/gpu/gpu.hpp"
|
2012-05-23 14:58:01 +02:00
|
|
|
#include "opencv2/calib3d/calib3d.hpp"
|
|
|
|
|
2011-09-07 15:16:07 +02:00
|
|
|
#include "perf_utility.hpp"
|
|
|
|
|
2012-06-07 19:21:29 +02:00
|
|
|
#ifdef GTEST_CREATE_SHARED_LIBRARY
|
2011-09-07 15:16:07 +02:00
|
|
|
#error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|