mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 05:29:54 +08:00
4a297a2443
- removed tr1 usage (dropped in C++17) - moved includes of vector/map/iostream/limits into ts.hpp - require opencv_test + anonymous namespace (added compile check) - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions - added missing license headers
13 lines
221 B
C++
13 lines
221 B
C++
#ifndef __OPENCV_PERF_PRECOMP_HPP__
|
|
#define __OPENCV_PERF_PRECOMP_HPP__
|
|
|
|
#include <opencv2/ts.hpp>
|
|
#include <opencv2/dnn.hpp>
|
|
|
|
namespace opencv_test {
|
|
using namespace perf;
|
|
using namespace cv::dnn;
|
|
} // namespace
|
|
|
|
#endif
|