scale_y           184 modules/core/include/opencv2/core/cuda/filters.hpp             : src(src_), scale_x(scale_x_), scale_y(scale_y_), scale(1.f / (scale_x * scale_y)) {}
scale_y           194 modules/core/include/opencv2/core/cuda/filters.hpp             float fsy1 = y * scale_y;
scale_y           195 modules/core/include/opencv2/core/cuda/filters.hpp             float fsy2 = fsy1 + scale_y;
scale_y           213 modules/core/include/opencv2/core/cuda/filters.hpp         float scale_x, scale_y ,scale;
scale_y           232 modules/core/include/opencv2/core/cuda/filters.hpp             float fsy1 = y * scale_y;
scale_y           233 modules/core/include/opencv2/core/cuda/filters.hpp             float fsy2 = fsy1 + scale_y;
scale_y           238 modules/core/include/opencv2/core/cuda/filters.hpp             float scale = 1.f / (fminf(scale_x, src.width - fsx1) * fminf(scale_y, src.height - fsy1));
scale_y           279 modules/core/include/opencv2/core/cuda/filters.hpp         float scale_x, scale_y;
scale_y          2356 modules/imgproc/src/imgwarp.cpp         scale_x(_scale_x), scale_y(_scale_y), cn(_cn), step(_step), vecOp(_cn, _step)
scale_y          2358 modules/imgproc/src/imgwarp.cpp         fast_mode = scale_x == 2 && scale_y == 2 && (cn == 1 || cn == 3 || cn == 4);
scale_y          2400 modules/imgproc/src/imgwarp.cpp     int scale_x, scale_y;
scale_y          2415 modules/imgproc/src/imgwarp.cpp         scale_y(_scale_y), ofs(_ofs), xofs(_xofs)
scale_y          2423 modules/imgproc/src/imgwarp.cpp         int area = scale_x*scale_y;
scale_y          2430 modules/imgproc/src/imgwarp.cpp         VecOp vop(scale_x, scale_y, src.channels(), (int)src.step/*, area_ofs*/);
scale_y          2435 modules/imgproc/src/imgwarp.cpp             int sy0 = dy*scale_y;
scale_y          2436 modules/imgproc/src/imgwarp.cpp             int w = sy0 + scale_y <= ssize.height ? dwidth1 : 0;
scale_y          2468 modules/imgproc/src/imgwarp.cpp                 for( int sy = 0; sy < scale_y; sy++ )
scale_y          2490 modules/imgproc/src/imgwarp.cpp     int scale_x, scale_y;
scale_y          2496 modules/imgproc/src/imgwarp.cpp                              int scale_x, int scale_y )
scale_y          2500 modules/imgproc/src/imgwarp.cpp         scale_y, ofs, xofs);
scale_y          2664 modules/imgproc/src/imgwarp.cpp                                     int scale_x, int scale_y );
scale_y          3235 modules/imgproc/src/imgwarp.cpp     double scale_x = 1./inv_scale_x, scale_y = 1./inv_scale_y;
scale_y          3239 modules/imgproc/src/imgwarp.cpp     int iscale_y = saturate_cast<int>(scale_y);
scale_y          3242 modules/imgproc/src/imgwarp.cpp             std::abs(scale_y - iscale_y) < DBL_EPSILON;
scale_y          3296 modules/imgproc/src/imgwarp.cpp         if( interpolation == INTER_AREA && scale_x >= 1 && scale_y >= 1 )
scale_y          3331 modules/imgproc/src/imgwarp.cpp             int ytab_size = computeResizeAreaTab(ssize.height, dsize.height, 1, scale_y, ytab);
scale_y          3438 modules/imgproc/src/imgwarp.cpp             fy = (float)((dy+0.5)*scale_y - 0.5);
scale_y          3444 modules/imgproc/src/imgwarp.cpp             sy = cvFloor(dy*scale_y);
scale_y           304 modules/imgproc/test/test_imgwarp.cpp         double scale_y = (double)src->rows/drows;
scale_y           315 modules/imgproc/test/test_imgwarp.cpp             double f = ((j+0.5)*scale_y - 0.5);
scale_y           185 modules/imgproc/test/test_imgwarp_strict.cpp     double scale_x, scale_y;
scale_y           192 modules/imgproc/test/test_imgwarp_strict.cpp             scale_y = rng.uniform(2, 5);
scale_y           197 modules/imgproc/test/test_imgwarp_strict.cpp             scale_y = rng.uniform(1.0, 3.0);
scale_y           203 modules/imgproc/test/test_imgwarp_strict.cpp         scale_y = rng.uniform(0.4, 4.0);
scale_y           205 modules/imgproc/test/test_imgwarp_strict.cpp     CV_Assert(scale_x > 0.0f && scale_y > 0.0f);
scale_y           208 modules/imgproc/test/test_imgwarp_strict.cpp     dsize.height = saturate_cast<int>((ssize.height + scale_y - 1) / scale_y);
scale_y           214 modules/imgproc/test/test_imgwarp_strict.cpp     scale_y = src.rows / static_cast<double>(dst.rows);
scale_y           216 modules/imgproc/test/test_imgwarp_strict.cpp     if (interpolation == INTER_AREA && (scale_x < 1.0 || scale_y < 1.0))
scale_y           272 modules/imgproc/test/test_imgwarp_strict.cpp                 double scale_y = static_cast<double>(ssize.height) / dsize.height;
scale_y           275 modules/imgproc/test/test_imgwarp_strict.cpp                     fabs(scale_y - cvRound(scale_y)) < FLT_EPSILON;
scale_y           278 modules/imgproc/test/test_imgwarp_strict.cpp                     scale_y = cvRound(scale_y);
scale_y           283 modules/imgproc/test/test_imgwarp_strict.cpp                 PRINT_TO_LOG("Scale (x, y): (%lf, %lf)\n", scale_x, scale_y);
scale_y           347 modules/imgproc/test/test_imgwarp_strict.cpp     double scale_y;
scale_y           361 modules/imgproc/test/test_imgwarp_strict.cpp     scale_y(), area_fast(false)
scale_y           424 modules/imgproc/test/test_imgwarp_strict.cpp     scale_y = src.rows / static_cast<double>(dst.rows);
scale_y           428 modules/imgproc/test/test_imgwarp_strict.cpp         fabs(scale_y - cvRound(scale_y)) < FLT_EPSILON;
scale_y           432 modules/imgproc/test/test_imgwarp_strict.cpp         scale_y = cvRound(scale_y);
scale_y           464 modules/imgproc/test/test_imgwarp_strict.cpp     CV_Assert(scale_x >= 1.0 && scale_y >= 1.0);
scale_y           466 modules/imgproc/test/test_imgwarp_strict.cpp     double fsy0 = 0, fsy1 = scale_y;
scale_y           507 modules/imgproc/test/test_imgwarp_strict.cpp         fsy1 = std::min((fsy0 = fsy1) + scale_y, static_cast<double>(ssize.height));
scale_y           596 modules/imgproc/test/test_imgwarp_strict.cpp             dims[1][dy].first = std::min(cvFloor(dy * scale_y), ssize.height - 1);
scale_y           601 modules/imgproc/test/test_imgwarp_strict.cpp         generate_buffer(scale_y, dims[1]);