Home
last modified time | relevance | path

Searched refs:fsy2 (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dfilters.hpp195 float fsy2 = fsy1 + scale_y; in operator ()() local
198 int sy2 = __float2int_rd(fsy2); in operator ()()
233 float fsy2 = fsy1 + scale_y; in operator ()() local
236 int sy2 = __float2int_rd(fsy2); in operator ()()
259 if (sy2 < fsy2) in operator ()()
261 out = out + src(sy2, dx) * ((fsy2 -sy2) * scale); in operator ()()
269 if ((sy2 < fsy2) && (sx2 < fsx2)) in operator ()()
270 out = out + src(sy2, sx2) * ((fsy2 -sy2) * (fsx2 -sx2) * scale); in operator ()()
272 if ((sy2 < fsy2) && (sx1 > fsx1)) in operator ()()
273 out = out + src(sy2, (sx1 - 1)) * ((fsy2 -sy2) * (sx1 -fsx1) * scale); in operator ()()
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
Dinterpolation.hpp316 const float fsy2 = fsy1 + area_height; in operator ()() local
319 const int sy2 = __float2int_ru(fsy2); in operator ()()
341 if (sy2 < fsy2) in operator ()()
344 … out = out + saturate_cast<work_type>(src(sy2, dx)) * static_cast<work_elem_type>(fsy2 - sy2); in operator ()()
353 if ((sy2 < fsy2) && (sx2 < fsx2)) in operator ()()
354 …out = out + saturate_cast<work_type>(src(sy2, sx2)) * static_cast<work_elem_type>((fsy2 - sy2) * (… in operator ()()
356 if ((sy2 < fsy2) && (sx1 > fsx1)) in operator ()()
357 …aturate_cast<work_type>(src(sy2, sx1 - 1)) * static_cast<work_elem_type>((fsy2 - sy2) * (sx1 - fsx… in operator ()()