Home
last modified time | relevance | path

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

/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudawarping/src/cuda/
H A Dresize.cu416 const int iscale_y = (int) round(fy); in call() local
421 if (std::abs(fx - iscale_x) < FLT_MIN && std::abs(fy - iscale_y) < FLT_MIN) in call()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dresize.cpp3265 int iscale_x = saturate_cast<int>(inv_fx), iscale_y = saturate_cast<int>(inv_fx); in ocl_resize()
3267 std::abs(inv_fy - iscale_y) < DBL_EPSILON; in ocl_resize()
3271 if( interpolation == INTER_LINEAR && is_area_fast && iscale_x == 2 && iscale_y == 2 ) in ocl_resize()
3426 iscale_x, iscale_y, 1.0f / (iscale_x * iscale_y)); in ocl_resize()
3811 int iscale_y = saturate_cast<int>(scale_y); in resize() local
3814 std::abs(scale_y - iscale_y) < DBL_EPSILON; in resize()
3823 …if (is_area_fast && iscale_x == 2 && iscale_y == 2 && cn != 2)//Area resize implementation for 2-c… in resize()
3854 if( interpolation == INTER_LINEAR && is_area_fast && iscale_x == 2 && iscale_y == 2 ) in resize()
3863 int area = iscale_x*iscale_y; in resize()
3871 for( sy = 0, k = 0; sy < iscale_y; sy++ ) in resize()
[all …]