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

  /external/opencv3/modules/cudawarping/test/
interpolation.hpp 113 float wsum = 0.0f; local
121 wsum += w;
125 float res = (!wsum)? 0 : sum / wsum;
  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 158 float wsum = 0.0f; local
166 wsum += w;
170 work_type res = (!wsum)? VecTraits<work_type>::all(0) : sum / wsum;
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp 193 float wsum = 0.0f; local
203 wsum += w;
207 work_type res = (wsum > numeric_limits<float>::epsilon()) ? VecTraits<work_type>::all(0) : sum / static_cast<work_elem_type>(wsum);
  /external/opencv3/modules/photo/src/
merge.cpp 324 Mat wsum = Mat::zeros(images[0].size(), CV_32FCC); local
331 wsum += times.at<float>((int)i) * times.at<float>((int)i) * w;
333 result = result.mul(1 / wsum);
  /external/opencv3/modules/imgproc/test/
test_bilateral_filter.cpp 190 float sum = 0, wsum = 0; local
200 wsum += w;
202 dptr[j] = (float)(sum/wsum);
210 float sum_b = 0, sum_g = 0, sum_r = 0, wsum = 0; local
222 wsum += w;
224 wsum = 1.f/wsum;
225 b0 = sum_b*wsum;
226 g0 = sum_g*wsum;
227 r0 = sum_r*wsum;
    [all...]

Completed in 107 milliseconds