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

  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 188 float fsx1 = x * scale_x; local
189 float fsx2 = fsx1 + scale_x;
191 int sx1 = __float2int_ru(fsx1);
226 float fsx1 = x * scale_x; local
227 float fsx2 = fsx1 + scale_x;
229 int sx1 = __float2int_ru(fsx1);
238 float scale = 1.f / (fminf(scale_x, src.width - fsx1) * fminf(scale_y, src.height - fsy1));
248 if (sx1 > fsx1)
249 out = out + src(dy, (sx1 -1) ) * ((sx1 - fsx1) * scale);
263 if ((sy1 > fsy1) && (sx1 > fsx1))
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp 309 const float fsx1 = x; local
310 const float fsx2 = fsx1 + area_width;
312 const int sx1 = __float2int_rd(fsx1);
328 if (sx1 > fsx1)
329 out = out + saturate_cast<work_type>(src(dy, sx1 - 1)) * static_cast<work_elem_type>(sx1 - fsx1);
347 if ((sy1 > fsy1) && (sx1 > fsx1))
348 out = out + saturate_cast<work_type>(src(sy1 - 1, sx1 - 1)) * static_cast<work_elem_type>((sy1 - fsy1) * (sx1 - fsx1));
356 if ((sy2 < fsy2) && (sx1 > fsx1))
357 out = out + saturate_cast<work_type>(src(sy2, sx1 - 1)) * static_cast<work_elem_type>((fsy2 - sy2) * (sx1 - fsx1));
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 473 double fsx0 = 0, fsx1 = scale_x;
478 int isx0 = cvFloor(fsx0), isx1 = std::min(ssize.width - 1, cvFloor(fsx1));
494 double wx = getWeight(fsx0, fsx1, sx);
505 fsx1 = std::min((fsx0 = fsx1) + scale_x, static_cast<double>(ssize.width));
    [all...]
  /external/opencv/cv/src/
cvimgwarp.cpp 761 float fsx1 = dx*scale_x, fsx2 = fsx1 + scale_x; local
    [all...]
  /external/opencv3/modules/imgproc/src/
imgwarp.cpp 2677 double fsx1 = dx * scale; local
    [all...]

Completed in 2269 milliseconds