81f427d435d7de77be889fecd5c8c7da9dd922e7
[profile/ivi/opencv.git] / modules / gpu / src / opencv2 / gpu / device / transform.hpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////\r
2 //\r
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.\r
4 //\r
5 //  By downloading, copying, installing or using the software you agree to this license.\r
6 //  If you do not agree to this license, do not download, install,\r
7 //  copy or use the software.\r
8 //\r
9 //\r
10 //                           License Agreement\r
11 //                For Open Source Computer Vision Library\r
12 //\r
13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.\r
14 // Copyright (C) 2009, Willow Garage Inc., all rights reserved.\r
15 // Third party copyrights are property of their respective owners.\r
16 //\r
17 // Redistribution and use in source and binary forms, with or without modification,\r
18 // are permitted provided that the following conditions are met:\r
19 //\r
20 //   * Redistribution's of source code must retain the above copyright notice,\r
21 //     this list of conditions and the following disclaimer.\r
22 //\r
23 //   * Redistribution's in binary form must reproduce the above copyright notice,\r
24 //     this list of conditions and the following disclaimer in the documentation\r
25 //     and/or other materials provided with the distribution.\r
26 //\r
27 //   * The name of the copyright holders may not be used to endorse or promote products\r
28 //     derived from this software without specific prior written permission.\r
29 //\r
30 // This software is provided by the copyright holders and contributors "as is" and\r
31 // any express or implied warranties, including, but not limited to, the implied\r
32 // warranties of merchantability and fitness for a particular purpose are disclaimed.\r
33 // In no event shall the Intel Corporation or contributors be liable for any direct,\r
34 // indirect, incidental, special, exemplary, or consequential damages\r
35 // (including, but not limited to, procurement of substitute goods or services;\r
36 // loss of use, data, or profits; or business interruption) however caused\r
37 // and on any theory of liability, whether in contract, strict liability,\r
38 // or tort (including negligence or otherwise) arising in any way out of\r
39 // the use of this software, even if advised of the possibility of such damage.\r
40 //\r
41 //M*/\r
42 \r
43 #ifndef __OPENCV_GPU_TRANSFORM_HPP__\r
44 #define __OPENCV_GPU_TRANSFORM_HPP__\r
45 \r
46 #include "internal_shared.hpp"\r
47 #include "utility.hpp"\r
48 #include "detail/transform_detail.hpp"\r
49 \r
50 BEGIN_OPENCV_DEVICE_NAMESPACE\r
51 \r
52 template <typename T, typename D, typename UnOp>\r
53 void transform(const DevMem2D_<T>& src, const DevMem2D_<D>& dst, const UnOp& op, cudaStream_t stream = 0)\r
54 {\r
55     detail::transform_caller(src, dst, op, WithOutMask(), stream);\r
56 }\r
57 template <typename T, typename D, typename UnOp>\r
58 void transform(const DevMem2D_<T>& src, const DevMem2D_<D>& dst, const PtrStepb& mask, const UnOp& op, cudaStream_t stream = 0)\r
59 {\r
60     detail::transform_caller(src, dst, op, SingleMask(mask), stream);\r
61 }\r
62 \r
63 template <typename T1, typename T2, typename D, typename BinOp>\r
64 void transform(const DevMem2D_<T1>& src1, const DevMem2D_<T2>& src2, const DevMem2D_<D>& dst, const BinOp& op, cudaStream_t stream = 0)\r
65 {\r
66     detail::transform_caller(src1, src2, dst, op, WithOutMask(), stream);\r
67 }\r
68 template <typename T1, typename T2, typename D, typename BinOp>\r
69 void transform(const DevMem2D_<T1>& src1, const DevMem2D_<T2>& src2, const DevMem2D_<D>& dst, const PtrStepb& mask, const BinOp& op, cudaStream_t stream = 0)\r
70 {\r
71     detail::transform_caller(src1, src2, dst, op, SingleMask(mask), stream);\r
72 }\r
73 \r
74 END_OPENCV_DEVICE_NAMESPACE\r
75 \r
76 #endif // __OPENCV_GPU_TRANSFORM_HPP__\r