HomeSort by relevance Sort by last modified time
    Searched defs:weights2 (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/cudaimgproc/test/
test_blend.cpp 55 void blendLinearGold(const cv::Mat& img1, const cv::Mat& img2, const cv::Mat& weights1, const cv::Mat& weights2, cv::Mat& result_gold)
64 const float* weights2_row = weights2.ptr<float>(y);
104 cv::Mat weights2 = randomMat(size, CV_32F, 0, 1); local
107 cv::cuda::blendLinear(loadMat(img1, useRoi), loadMat(img2, useRoi), loadMat(weights1, useRoi), loadMat(weights2, useRoi), result);
111 blendLinearGold<uchar>(img1, img2, weights1, weights2, result_gold);
113 blendLinearGold<float>(img1, img2, weights1, weights2, result_gold);
  /external/opencv3/modules/imgproc/src/
blend.cpp 58 src1(&_src1), src2(&_src2), weights1(&_weights1), weights2(&_weights2), dst(&_dst)
69 const float * const weights2_row = weights2->ptr<float>(y);
90 const Mat * src1, * src2, * weights1, * weights2; member in class:cv::BlendLinearInvoker
108 weights2 = _weights2.getUMat(), dst = _dst.getUMat();
111 ocl::KernelArg::ReadOnlyNoSize(weights1), ocl::KernelArg::ReadOnlyNoSize(weights2),
137 weights2 = _weights2.getMat(), dst = _dst.getMat(); local
141 BlendLinearInvoker<uchar> invoker(src1, src2, weights1, weights2, dst);
146 BlendLinearInvoker<float> invoker(src1, src2, weights1, weights2, dst);

Completed in 241 milliseconds