precomp.hpp 2.18 KB
Newer Older
vludv's avatar
vludv committed
1 2 3 4
/*
 *  By downloading, copying, installing or using the software you agree to this license.
 *  If you do not agree to this license, do not download, install,
 *  copy or use the software.
5 6
 *
 *
vludv's avatar
vludv committed
7 8 9
 *  License Agreement
 *  For Open Source Computer Vision Library
 *  (3 - clause BSD License)
10
 *
vludv's avatar
vludv committed
11 12
 *  Redistribution and use in source and binary forms, with or without modification,
 *  are permitted provided that the following conditions are met :
13
 *
14
 *  * Redistributions of source code must retain the above copyright notice,
vludv's avatar
vludv committed
15
 *  this list of conditions and the following disclaimer.
16
 *
vludv's avatar
vludv committed
17 18 19
 *  * Redistributions in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and / or other materials provided with the distribution.
20
 *
vludv's avatar
vludv committed
21 22 23
 *  * Neither the names of the copyright holders nor the names of the contributors
 *  may be used to endorse or promote products derived from this software
 *  without specific prior written permission.
24
 *
vludv's avatar
vludv committed
25 26 27 28 29 30 31 32 33 34 35 36
 *  This software is provided by the copyright holders and contributors "as is" and
 *  any express or implied warranties, including, but not limited to, the implied
 *  warranties of merchantability and fitness for a particular purpose are disclaimed.
 *  In no event shall copyright holders or contributors be liable for any direct,
 *  indirect, incidental, special, exemplary, or consequential damages
 *  (including, but not limited to, procurement of substitute goods or services;
 *  loss of use, data, or profits; or business interruption) however caused
 *  and on any theory of liability, whether in contract, strict liability,
 *  or tort(including negligence or otherwise) arising in any way out of
 *  the use of this software, even if advised of the possibility of such damage.
 */

37 38
#ifndef _OPENCV_XIMGPROC_PRECOMP_HPP_
#define _OPENCV_XIMGPROC_PRECOMP_HPP_
vludv's avatar
vludv committed
39 40 41 42 43 44 45 46 47

#include <opencv2/core.hpp>
#include <opencv2/core/ocl.hpp>
#include <opencv2/core/base.hpp>
#include <opencv2/core/utility.hpp>
#include <opencv2/core/cvdef.h>
#include <opencv2/core/core_c.h>
#include <opencv2/core/private.hpp>
#include <opencv2/imgproc.hpp>
48 49

#include <opencv2/ximgproc.hpp>
vludv's avatar
vludv committed
50

51 52 53 54
#include <algorithm>
#include <map>

#endif