Merge pull request #1663 from vpisarev:ocl_experiments3
[profile/ivi/opencv.git] / modules / ocl / src / blend.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                           License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2010-2012, Multicoreware, Inc., all rights reserved.
14 // Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
15 // Third party copyrights are property of their respective owners.
16 //
17 // @Authors
18 //    Nathan, liujun@multicorewareinc.com
19 //
20 // Redistribution and use in source and binary forms, with or without modification,
21 // are permitted provided that the following conditions are met:
22 //
23 //   * Redistribution's of source code must retain the above copyright notice,
24 //     this list of conditions and the following disclaimer.
25 //
26 //   * Redistribution's in binary form must reproduce the above copyright notice,
27 //     this list of conditions and the following disclaimer in the documentation
28 //     and/or other oclMaterials provided with the distribution.
29 //
30 //   * The name of the copyright holders may not be used to endorse or promote products
31 //     derived from this software without specific prior written permission.
32 //
33 // This software is provided by the copyright holders and contributors "as is" and
34 // any express or implied warranties, including, but not limited to, the implied
35 // warranties of merchantability and fitness for a particular purpose are disclaimed.
36 // In no event shall the Intel Corporation or contributors be liable for any direct,
37 // indirect, incidental, special, exemplary, or consequential damages
38 // (including, but not limited to, procurement of substitute goods or services;
39 // loss of use, data, or profits; or business interruption) however caused
40 // and on any theory of liability, whether in contract, strict liability,
41 // or tort (including negligence or otherwise) arising in any way out of
42 // the use of this software, even if advised of the possibility of such damage.
43 //
44 //M*/
45
46 #include "precomp.hpp"
47 #include "opencl_kernels.hpp"
48
49 using namespace cv;
50 using namespace cv::ocl;
51
52 void cv::ocl::blendLinear(const oclMat &img1, const oclMat &img2, const oclMat &weights1, const oclMat &weights2,
53                           oclMat &result)
54 {
55     cv::ocl::Context *ctx = img1.clCxt;
56     CV_Assert(ctx == img2.clCxt && ctx == weights1.clCxt && ctx == weights2.clCxt);
57     int channels = img1.oclchannels();
58     int depth = img1.depth();
59     int rows = img1.rows;
60     int cols = img1.cols;
61     int istep = img1.step1();
62     int wstep = weights1.step1();
63     size_t globalSize[] = {cols * channels / 4, rows, 1};
64     size_t localSize[] = {256, 1, 1};
65
66     std::vector< std::pair<size_t, const void *> > args;
67     result.create(img1.size(), CV_MAKE_TYPE(depth,img1.channels()));
68     if(globalSize[0] != 0)
69     {
70         args.push_back( std::make_pair( sizeof(cl_mem), (void *)&result.data ));
71         args.push_back( std::make_pair( sizeof(cl_mem), (void *)&img1.data ));
72         args.push_back( std::make_pair( sizeof(cl_mem), (void *)&img2.data ));
73         args.push_back( std::make_pair( sizeof(cl_mem), (void *)&weights1.data ));
74         args.push_back( std::make_pair( sizeof(cl_mem), (void *)&weights2.data ));
75         args.push_back( std::make_pair( sizeof(cl_int), (void *)&rows ));
76         args.push_back( std::make_pair( sizeof(cl_int), (void *)&cols ));
77         args.push_back( std::make_pair( sizeof(cl_int), (void *)&istep ));
78         args.push_back( std::make_pair( sizeof(cl_int), (void *)&wstep ));
79         String kernelName = "BlendLinear";
80
81         openCLExecuteKernel(ctx, &blend_linear, kernelName, globalSize, localSize, args, channels, depth);
82     }
83 }