OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fsy1
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp
194
float
fsy1
= y * scale_y;
local
195
float fsy2 =
fsy1
+ scale_y;
197
int sy1 = __float2int_ru(
fsy1
);
232
float
fsy1
= y * scale_y;
local
233
float fsy2 =
fsy1
+ scale_y;
235
int sy1 = __float2int_ru(
fsy1
);
238
float scale = 1.f / (fminf(scale_x, src.width - fsx1) * fminf(scale_y, src.height -
fsy1
));
255
if (sy1 >
fsy1
)
257
out = out + src( (sy1 - 1) , dx) * ((sy1 -
fsy1
) * scale);
263
if ((sy1 >
fsy1
) && (sx1 > fsx1)
[
all
...]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp
315
const float
fsy1
= y;
local
316
const float fsy2 =
fsy1
+ area_height;
318
const int sy1 = __float2int_rd(
fsy1
);
335
if (sy1 >
fsy1
)
338
out = out + saturate_cast<work_type>(src(sy1 - 1, dx)) * static_cast<work_elem_type>(sy1 -
fsy1
);
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));
350
if ((sy1 >
fsy1
) && (sx2 < fsx2))
351
out = out + saturate_cast<work_type>(src(sy1 - 1, sx2)) * static_cast<work_elem_type>((sy1 -
fsy1
) * (fsx2 - sx2));
/external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp
466
double fsy0 = 0,
fsy1
= scale_y;
470
int isy0 = cvFloor(fsy0), isy1 = std::min(cvFloor(
fsy1
), ssize.height - 1);
493
double wy = getWeight(fsy0,
fsy1
, sy);
507
fsy1
= std::min((fsy0 =
fsy1
) + scale_y, static_cast<double>(ssize.height));
[
all
...]
Completed in 241 milliseconds