1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

Shape module added

This commit is contained in:
Juan Manuel Perez
2013-09-23 19:00:49 +02:00
committed by Vadim Pisarevsky
parent 4b203f7b1a
commit 61c27ac81e
51 changed files with 5147 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#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_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__
#include <iostream>
#include "opencv2/ts.hpp"
#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/shape.hpp"
#include "opencv2/opencv_modules.hpp"
#endif