HomeSort by relevance Sort by last modified time
    Searched full:blendlinear (Results 1 - 10 of 10) sorted by null

  /external/opencv3/modules/imgproc/test/ocl/
test_blend.cpp 55 PARAM_TEST_CASE(BlendLinear, MatDepth, Channels, bool)
111 OCL_TEST_P(BlendLinear, Accuracy)
117 OCL_OFF(cv::blendLinear(src1_roi, src2_roi, weights1_roi, weights2_roi, dst_roi));
118 OCL_ON(cv::blendLinear(usrc1_roi, usrc2_roi, uweights1_roi, uweights2_roi, udst_roi));
124 OCL_INSTANTIATE_TEST_CASE_P(ImgProc, BlendLinear, Combine(testing::Values(CV_8U, CV_32F), OCL_ALL_CHANNELS, Bool()));
  /external/opencv3/modules/imgproc/perf/opencl/
perf_blend.cpp 55 ///////////// BlendLinear ////////////////////////
59 OCL_PERF_TEST_P(BlendLinearFixture, BlendLinear, ::testing::Combine(OCL_TEST_SIZES, OCL_PERF_ENUM(CV_32FC1, CV_32FC4)))
75 OCL_TEST_CYCLE() cv::blendLinear(src1, src2, weights1, weights2, dst);
  /external/opencv3/modules/cudaimgproc/perf/
perf_blend.cpp 50 // BlendLinear
52 PERF_TEST_P(Sz_Depth_Cn, BlendLinear,
78 TEST_CYCLE() cv::cuda::blendLinear(d_img1, d_img2, d_weights1, d_weights2, dst);
  /external/opencv3/modules/cudaimgproc/src/
blend.cpp 50 void cv::cuda::blendLinear(InputArray, InputArray, InputArray, InputArray, OutputArray, Stream&) { throw_no_cuda(); }
55 // blendLinear
70 void cv::cuda::blendLinear(InputArray _img1, InputArray _img2, InputArray _weights1, InputArray _weights2,
  /external/opencv3/modules/imgproc/src/
blend.cpp 101 ocl::Kernel k("blendLinear", ocl::imgproc::blend_linear_oclsrc,
122 void cv::blendLinear( InputArray _src1, InputArray _src2, InputArray _weights1, InputArray _weights2, OutputArray _dst )
  /external/opencv3/modules/imgproc/src/opencl/
blend_linear.cl 56 __kernel void blendLinear(__global const uchar * src1ptr, int src1_step, int src1_offset,
  /external/opencv3/modules/cudaimgproc/test/
test_blend.cpp 107 cv::cuda::blendLinear(loadMat(img1, useRoi), loadMat(img2, useRoi), loadMat(weights1, useRoi), loadMat(weights2, useRoi), result);
  /external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp 721 CV_EXPORTS void blendLinear(InputArray img1, InputArray img2, InputArray weights1, InputArray weights2,
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp 186 "__kernel void blendLinear(__global const uchar * src1ptr, int src1_step, int src1_offset,\n"
    [all...]

Completed in 521 milliseconds