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

  /external/opencv3/modules/superres/src/
btv_l1.cpp 347 void calcBtvWeights(int btvKernelSize, double alpha, std::vector<float>& btvWeights)
351 btvWeights.resize(size);
359 btvWeights[ind] = pow(alpha_f, std::abs(m) + std::abs(l));
371 const float* btvWeights;
392 dstRow[j] += btvWeights[ind] * (diffSign(srcVal, srcRow3[j + l])
400 void calcBtvRegularizationImpl(InputArray _src, OutputArray _dst, int btvKernelSize, const std::vector<float>& btvWeights)
414 body.btvWeights = &btvWeights[0];
446 const std::vector<float>& btvWeights, const UMat & ubtvWeights)
452 typedef void (*func_t)(InputArray _src, OutputArray _dst, int btvKernelSize, const std::vector<float>& btvWeights);
    [all...]
btv_l1_cuda.cpp 172 void calcBtvWeights(int btvKernelSize, double alpha, std::vector<float>& btvWeights)
176 btvWeights.resize(size);
184 btvWeights[ind] = pow(alpha_f, std::abs(m) + std::abs(l));
187 btv_l1_cudev::loadBtvWeights(&btvWeights[0], size);

Completed in 4159 milliseconds