HomeSort by relevance Sort by last modified time
    Searched defs:weights1 (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)
63 const float* weights1_row = weights1.ptr<float>(y);
103 cv::Mat weights1 = 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)
68 const float * const weights1_row = weights1->ptr<float>(y);
90 const Mat * src1, * src2, * weights1, * weights2; member in class:cv::BlendLinearInvoker
107 UMat src1 = _src1.getUMat(), src2 = _src2.getUMat(), weights1 = _weights1.getUMat(),
111 ocl::KernelArg::ReadOnlyNoSize(weights1), ocl::KernelArg::ReadOnlyNoSize(weights2),
136 Mat src1 = _src1.getMat(), src2 = _src2.getMat(), weights1 = _weights1.getMat(), local
141 BlendLinearInvoker<uchar> invoker(src1, src2, weights1, weights2, dst);
146 BlendLinearInvoker<float> invoker(src1, src2, weights1, weights2, dst);

Completed in 99 milliseconds