maxVal            492 3rdparty/openexr/Imath/ImathMatrixAlgo.h     T maxVal = 0;
maxVal            495 3rdparty/openexr/Imath/ImathMatrixAlgo.h         if (Imath::abs (row[i][j]) > maxVal)
maxVal            496 3rdparty/openexr/Imath/ImathMatrixAlgo.h         maxVal = Imath::abs (row[i][j]);
maxVal            506 3rdparty/openexr/Imath/ImathMatrixAlgo.h     if (maxVal != 0)
maxVal            509 3rdparty/openexr/Imath/ImathMatrixAlgo.h         if (! checkForZeroScaleInRow (maxVal, row[i], exc))
maxVal            512 3rdparty/openexr/Imath/ImathMatrixAlgo.h         row[i] /= maxVal;
maxVal            584 3rdparty/openexr/Imath/ImathMatrixAlgo.h     scl *= maxVal;
maxVal           1166 3rdparty/openexr/Imath/ImathMatrixAlgo.h     T maxVal = 0;
maxVal           1169 3rdparty/openexr/Imath/ImathMatrixAlgo.h         if (Imath::abs (row[i][j]) > maxVal)
maxVal           1170 3rdparty/openexr/Imath/ImathMatrixAlgo.h         maxVal = Imath::abs (row[i][j]);
maxVal           1180 3rdparty/openexr/Imath/ImathMatrixAlgo.h     if (maxVal != 0)
maxVal           1183 3rdparty/openexr/Imath/ImathMatrixAlgo.h         if (! checkForZeroScaleInRow (maxVal, row[i], exc))
maxVal           1186 3rdparty/openexr/Imath/ImathMatrixAlgo.h         row[i] /= maxVal;
maxVal           1239 3rdparty/openexr/Imath/ImathMatrixAlgo.h     scl *= maxVal;
maxVal            275 apps/traincascade/old_ml_inner_functions.cpp     double minVal, maxVal;
maxVal            307 apps/traincascade/old_ml_inner_functions.cpp         CV_CALL(cvMinMaxLoc (&data_comp, &minVal, &maxVal, &minLoc, &maxLoc));
maxVal            309 apps/traincascade/old_ml_inner_functions.cpp         CV_CALL(cvRandArr (&rng, &centers_comp, CV_RAND_UNI, cvScalarAll(minVal), cvScalarAll(maxVal)));
maxVal           1260 modules/calib3d/src/circlesgrid.cpp     double maxVal;
maxVal           1262 modules/calib3d/src/circlesgrid.cpp     minMaxLoc(distanceMatrix, 0, &maxVal, 0, &maxLoc);
maxVal           1264 modules/calib3d/src/circlesgrid.cpp     if (maxVal > longestPaths[0].length)
maxVal           1270 modules/calib3d/src/circlesgrid.cpp     if (longestPaths.empty() || (maxVal == longestPaths[0].length && graphIdx == bestGraphIdx))
maxVal           1272 modules/calib3d/src/circlesgrid.cpp       Path path = Path(maxLoc.x, maxLoc.y, cvRound(maxVal));
maxVal            105 modules/calib3d/test/test_solvepnp_ransac.cpp         const double maxVal = 1.0;
maxVal            110 modules/calib3d/test/test_solvepnp_ransac.cpp             rvec.at<double>(i,0) = rng.uniform(minVal, maxVal);
maxVal            111 modules/calib3d/test/test_solvepnp_ransac.cpp             tvec.at<double>(i,0) = rng.uniform(minVal, maxVal/10);
maxVal            740 modules/core/include/opencv2/core.hpp                             CV_OUT double* maxVal = 0, CV_OUT Point* minLoc = 0,
maxVal            767 modules/core/include/opencv2/core.hpp CV_EXPORTS void minMaxIdx(InputArray src, double* minVal, double* maxVal = 0,
maxVal            780 modules/core/include/opencv2/core.hpp                           double* maxVal, int* minIdx = 0, int* maxIdx = 0);
maxVal           1495 modules/core/include/opencv2/core.hpp                             double minVal = -DBL_MAX, double maxVal = DBL_MAX);
maxVal            556 modules/core/include/opencv2/core/cuda/functional.hpp             return (src > thresh) * maxVal;
maxVal            561 modules/core/include/opencv2/core/cuda/functional.hpp             : thresh(other.thresh), maxVal(other.maxVal) {}
maxVal            564 modules/core/include/opencv2/core/cuda/functional.hpp         T maxVal;
maxVal            573 modules/core/include/opencv2/core/cuda/functional.hpp             return (src <= thresh) * maxVal;
maxVal            578 modules/core/include/opencv2/core/cuda/functional.hpp             : thresh(other.thresh), maxVal(other.maxVal) {}
maxVal            581 modules/core/include/opencv2/core/cuda/functional.hpp         T maxVal;
maxVal           1043 modules/core/misc/java/test/CoreTest.java         double maxVal = 10;
maxVal           1047 modules/core/misc/java/test/CoreTest.java         gray3.put((int) maxLoc.y, (int) maxLoc.x, maxVal);
maxVal           1052 modules/core/misc/java/test/CoreTest.java         assertEquals(maxVal, mmres.maxVal);
maxVal           1072 modules/core/misc/java/test/CoreTest.java         assertEquals(130.0, res.maxVal);
maxVal             19 modules/core/perf/perf_minmaxloc.cpp     double minVal, maxVal;
maxVal             31 modules/core/perf/perf_minmaxloc.cpp     TEST_CYCLE() minMaxLoc(src, &minVal, &maxVal, &minLoc, &maxLoc);
maxVal             34 modules/core/perf/perf_minmaxloc.cpp     SANITY_CHECK(maxVal, 1e-12);
maxVal           1569 modules/core/src/mathfuncs.cpp bool checkIntegerRange(cv::Mat src, Point& bad_pt, int minVal, int maxVal, double& bad_value)
maxVal           1573 modules/core/src/mathfuncs.cpp     if (minVal < type_ass::min_allowable && maxVal > type_ass::max_allowable)
maxVal           1577 modules/core/src/mathfuncs.cpp     else if (minVal > type_ass::max_allowable || maxVal < type_ass::min_allowable || maxVal < minVal)
maxVal           1587 modules/core/src/mathfuncs.cpp             if (as_one_channel.at<typename type_ass::type>(j ,i) < minVal || as_one_channel.at<typename type_ass::type>(j ,i) > maxVal)
maxVal           1600 modules/core/src/mathfuncs.cpp typedef bool (*check_range_function)(cv::Mat src, Point& bad_pt, int minVal, int maxVal, double& bad_value);
maxVal           1611 modules/core/src/mathfuncs.cpp bool checkRange(InputArray _src, bool quiet, Point* pt, double minVal, double maxVal)
maxVal           1623 modules/core/src/mathfuncs.cpp             if (!checkRange( it.planes[0], quiet, pt, minVal, maxVal ))
maxVal           1640 modules/core/src/mathfuncs.cpp         int maxVali = maxVal>INT_MAX ? INT_MAX : cvCeil(maxVal) - 1; // checkIntegerRang() use inclusive maxVal
maxVal           1657 modules/core/src/mathfuncs.cpp             b.f = (float)std::min(maxVal, (double)FLT_MAX);
maxVal           1686 modules/core/src/mathfuncs.cpp             b.f = maxVal;
maxVal           1876 modules/core/src/mathfuncs.cpp                         double minVal, double maxVal )
maxVal           1879 modules/core/src/mathfuncs.cpp         minVal = -DBL_MAX, maxVal = DBL_MAX;
maxVal           1880 modules/core/src/mathfuncs.cpp     return cv::checkRange(cv::cvarrToMat(arr), (flags & CV_CHECK_QUIET) != 0, 0, minVal, maxVal );
maxVal           1844 modules/core/src/stat.cpp     WT minVal = *_minVal, maxVal = *_maxVal;
maxVal           1857 modules/core/src/stat.cpp             if( val > maxVal )
maxVal           1859 modules/core/src/stat.cpp                 maxVal = val;
maxVal           1874 modules/core/src/stat.cpp             if( mask[i] && val > maxVal )
maxVal           1876 modules/core/src/stat.cpp                 maxVal = val;
maxVal           1885 modules/core/src/stat.cpp     *_maxVal = maxVal;
maxVal           1955 modules/core/src/stat.cpp void getMinMaxRes(const Mat & db, double * minVal, double * maxVal,
maxVal           1972 modules/core/src/stat.cpp     if (maxVal || maxLoc)
maxVal           2028 modules/core/src/stat.cpp     if (maxVal)
maxVal           2029 modules/core/src/stat.cpp         *maxVal = zero_mask ? 0 : (double)maxval;
maxVal           2045 modules/core/src/stat.cpp typedef void (*getMinMaxResFunc)(const Mat & db, double * minVal, double * maxVal,
maxVal           2048 modules/core/src/stat.cpp static bool ocl_minMaxIdx( InputArray _src, double* minVal, double* maxVal, int* minLoc, int* maxLoc, InputArray _mask,
maxVal           2090 modules/core/src/stat.cpp             needMaxVal = maxVal || maxLoc, needMaxLoc = maxLoc != NULL;
maxVal           2174 modules/core/src/stat.cpp     func(db.getMat(ACCESS_READ), minVal, maxVal,
maxVal           2187 modules/core/src/stat.cpp                    double* maxVal, int* minIdx, int* maxIdx,
maxVal           2195 modules/core/src/stat.cpp                ocl_minMaxIdx(_src, minVal, maxVal, minIdx, maxIdx, _mask))
maxVal           2229 modules/core/src/stat.cpp                         if( maxVal )
maxVal           2230 modules/core/src/stat.cpp                             *maxVal = (double)max;
maxVal           2272 modules/core/src/stat.cpp                         if( maxVal )
maxVal           2273 modules/core/src/stat.cpp                             *maxVal = (double)max;
maxVal           2326 modules/core/src/stat.cpp     if( maxVal )
maxVal           2327 modules/core/src/stat.cpp         *maxVal = dmaxval;
maxVal           2335 modules/core/src/stat.cpp void cv::minMaxLoc( InputArray _img, double* minVal, double* maxVal,
maxVal           2340 modules/core/src/stat.cpp     minMaxIdx(_img, minVal, maxVal, (int*)minLoc, (int*)maxLoc, mask);
maxVal            190 modules/core/test/test_rand.cpp             double maxVal = dist_type == CV_RAND_UNI ? B[c] : A[c] + B[c]*4;
maxVal            191 modules/core/test/test_rand.cpp             double scale = HSZ/(maxVal - minVal);
maxVal            213 modules/core/test/test_rand.cpp                     if( (minVal <= val && val < maxVal) || (depth >= CV_32F && val == maxVal) )
maxVal            586 modules/cudaarithm/include/opencv2/cudaarithm.hpp CV_EXPORTS void minMax(InputArray src, double* minVal, double* maxVal, InputArray mask = noArray());
maxVal            603 modules/cudaarithm/include/opencv2/cudaarithm.hpp CV_EXPORTS void minMaxLoc(InputArray src, double* minVal, double* maxVal, Point* minLoc, Point* maxLoc,
maxVal           2558 modules/cudaarithm/test/test_element_operations.cpp     double maxVal = randomDouble(20.0, 127.0);
maxVal           2559 modules/cudaarithm/test/test_element_operations.cpp     double thresh = randomDouble(0.0, maxVal);
maxVal           2562 modules/cudaarithm/test/test_element_operations.cpp     cv::cuda::threshold(loadMat(src, useRoi), dst, thresh, maxVal, threshOp);
maxVal           2565 modules/cudaarithm/test/test_element_operations.cpp     cv::threshold(src, dst_gold, thresh, maxVal, threshOp);
maxVal            397 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            398 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMax(loadMat(src), &minVal, &maxVal);
maxVal            407 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            408 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMax(loadMat(src, useRoi), &minVal, &maxVal);
maxVal            414 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            449 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            450 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMax(loadMat(src), &minVal, &maxVal, loadMat(mask));
maxVal            459 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            460 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMax(loadMat(src, useRoi), &minVal, &maxVal, loadMat(mask, useRoi));
maxVal            466 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            478 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            480 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMax(loadMat(src), 0, &maxVal);
maxVal            489 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            491 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMax(loadMat(src, useRoi), 0, &maxVal);
maxVal            497 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            563 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            565 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMaxLoc(loadMat(src), &minVal, &maxVal, &minLoc, &maxLoc);
maxVal            574 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            576 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMaxLoc(loadMat(src, useRoi), &minVal, &maxVal, &minLoc, &maxLoc);
maxVal            583 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            594 modules/cudaarithm/test/test_reductions.cpp     double minVal, maxVal;
maxVal            596 modules/cudaarithm/test/test_reductions.cpp     cv::cuda::minMaxLoc(loadMat(src, useRoi), &minVal, &maxVal, &minLoc, &maxLoc);
maxVal            603 modules/cudaarithm/test/test_reductions.cpp     EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            613 modules/cudaarithm/test/test_reductions.cpp     double minVal, maxVal;
maxVal            615 modules/cudaarithm/test/test_reductions.cpp     cv::cuda::minMaxLoc(loadMat(src, useRoi), &minVal, &maxVal, &minLoc, &maxLoc);
maxVal            622 modules/cudaarithm/test/test_reductions.cpp     EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            672 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            674 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMaxLoc(loadMat(src), &minVal, &maxVal, &minLoc, &maxLoc, loadMat(mask));
maxVal            683 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            685 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMaxLoc(loadMat(src, useRoi), &minVal, &maxVal, &minLoc, &maxLoc, loadMat(mask, useRoi));
maxVal            692 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            707 modules/cudaarithm/test/test_reductions.cpp             double minVal, maxVal;
maxVal            710 modules/cudaarithm/test/test_reductions.cpp             cv::cuda::minMaxLoc(loadMat(src, useRoi), 0, &maxVal, 0, 0);
maxVal            721 modules/cudaarithm/test/test_reductions.cpp         double minVal, maxVal;
maxVal            724 modules/cudaarithm/test/test_reductions.cpp         cv::cuda::minMaxLoc(loadMat(src, useRoi), 0, &maxVal, 0, 0);
maxVal            733 modules/cudaarithm/test/test_reductions.cpp         EXPECT_DOUBLE_EQ(maxVal_gold, maxVal);
maxVal            113 modules/cudaimgproc/src/gftt.cpp         double maxVal = 0;
maxVal            114 modules/cudaimgproc/src/gftt.cpp         cuda::minMax(eig_, 0, &maxVal);
maxVal            118 modules/cudaimgproc/src/gftt.cpp         int total = findCorners_gpu(eig_, static_cast<float>(maxVal * qualityLevel_), mask, tmpCorners_.ptr<float2>(), tmpCorners_.cols);
maxVal            253 modules/cudaimgproc/test/test_match_template.cpp     double minVal, maxVal;
maxVal            254 modules/cudaimgproc/test/test_match_template.cpp     cv::minMaxLoc(dst, &minVal, &maxVal, &minLoc, &maxLoc);
maxVal            265 modules/cudaimgproc/test/test_match_template.cpp     ASSERT_LE(maxVal, 1.0);
maxVal             57 modules/cudalegacy/src/gmg.cpp         void loadConstants(int width, int height, float minVal, float maxVal, int quantizationLevels, float backgroundPrior,
maxVal            198 modules/cudalegacy/src/gmg.cpp             double maxVal = maxVal_;
maxVal            203 modules/cudalegacy/src/gmg.cpp                 maxVal = frame.depth() == CV_8U ? 255.0 : frame.depth() == CV_16U ? std::numeric_limits<ushort>::max() : 1.0;
maxVal            206 modules/cudalegacy/src/gmg.cpp             initialize(frame.size(), (float) minVal, (float) maxVal);
maxVal             82 modules/cudev/include/opencv2/cudev/expr/per_element_func.hpp threshBinary_(const SrcPtr& src, typename PtrTraits<SrcPtr>::value_type thresh, typename PtrTraits<SrcPtr>::value_type maxVal)
maxVal             84 modules/cudev/include/opencv2/cudev/expr/per_element_func.hpp     return makeExpr(transformPtr(src, thresh_binary_func(thresh, maxVal)));
maxVal             89 modules/cudev/include/opencv2/cudev/expr/per_element_func.hpp threshBinaryInv_(const SrcPtr& src, typename PtrTraits<SrcPtr>::value_type thresh, typename PtrTraits<SrcPtr>::value_type maxVal)
maxVal             91 modules/cudev/include/opencv2/cudev/expr/per_element_func.hpp     return makeExpr(transformPtr(src, thresh_binary_inv_func(thresh, maxVal)));
maxVal            676 modules/cudev/include/opencv2/cudev/functional/functional.hpp     T maxVal;
maxVal            680 modules/cudev/include/opencv2/cudev/functional/functional.hpp         return saturate_cast<T>(src > thresh) * maxVal;
maxVal            685 modules/cudev/include/opencv2/cudev/functional/functional.hpp __host__ __device__ ThreshBinaryFunc<T> thresh_binary_func(T thresh, T maxVal)
maxVal            689 modules/cudev/include/opencv2/cudev/functional/functional.hpp     f.maxVal = maxVal;
maxVal            696 modules/cudev/include/opencv2/cudev/functional/functional.hpp     T maxVal;
maxVal            700 modules/cudev/include/opencv2/cudev/functional/functional.hpp         return saturate_cast<T>(src <= thresh) * maxVal;
maxVal            705 modules/cudev/include/opencv2/cudev/functional/functional.hpp __host__ __device__ ThreshBinaryInvFunc<T> thresh_binary_inv_func(T thresh, T maxVal)
maxVal            709 modules/cudev/include/opencv2/cudev/functional/functional.hpp     f.maxVal = maxVal;
maxVal             60 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp     __global__ void minMaxLoc_pass_1(const SrcPtr src, ResType* minVal, ResType* maxVal, int* minLoc, int* maxLoc, const MaskPtr mask, const int rows, const int cols, const int patch_y, const int patch_x)
maxVal            110 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp             maxVal[bid] = myMax;
maxVal            117 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp     __global__ void minMaxLoc_pass_2(T* minMal, T* maxVal, int* minLoc, int* maxLoc, int count)
maxVal            127 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp         T myMax = maxVal[idx];
maxVal            139 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp             maxVal[0] = myMax;
maxVal            156 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp     __host__ void minMaxLoc(const SrcPtr& src, ResType* minVal, ResType* maxVal, int* minLoc, int* maxLoc, const MaskPtr& mask, int rows, int cols, cudaStream_t stream)
maxVal            164 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp         minMaxLoc_pass_1<Policy::block_size_x * Policy::block_size_y><<<grid, block, 0, stream>>>(src, minVal, maxVal, minLoc, maxLoc, mask, rows, cols, patch_y, patch_x);
maxVal            167 modules/cudev/include/opencv2/cudev/grid/detail/minmaxloc.hpp         minMaxLoc_pass_2<Policy::block_size_x * Policy::block_size_y><<<1, Policy::block_size_x * Policy::block_size_y, 0, stream>>>(minVal, maxVal, minLoc, maxLoc, grid.x * grid.y);
maxVal            150 modules/cudev/include/opencv2/cudev/grid/reduce.hpp     grid_reduce_detail::maxVal<Policy>(shrinkPtr(src),
maxVal            166 modules/cudev/include/opencv2/cudev/grid/reduce.hpp     grid_reduce_detail::maxVal<Policy>(shrinkPtr(src),
maxVal            289 modules/imgproc/src/featureselect.cpp     double maxVal = 0;
maxVal            290 modules/imgproc/src/featureselect.cpp     minMaxLoc( eig, 0, &maxVal, 0, 0, _mask );
maxVal            291 modules/imgproc/src/featureselect.cpp     threshold( eig, eig, maxVal*qualityLevel, 0, THRESH_TOZERO );
maxVal           2771 modules/imgproc/src/histogram.cpp     double minVal, maxVal;
maxVal           2785 modules/imgproc/src/histogram.cpp         cvMinMaxLoc( &mat, &minVal, &maxVal, &minPt, &maxPt );
maxVal           2859 modules/imgproc/src/histogram.cpp             m.i = CV_TOGGLE_FLT(maxv); maxVal = m.f;
maxVal           2863 modules/imgproc/src/histogram.cpp             minVal = maxVal = 0;
maxVal           2879 modules/imgproc/src/histogram.cpp         *value_max = (float)maxVal;
maxVal            135 modules/imgproc/src/opencl/gftt.cl             float maxVal = val;
maxVal            136 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y - 1, x - 1), maxVal);
maxVal            137 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y - 1, x    ), maxVal);
maxVal            138 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y - 1, x + 1), maxVal);
maxVal            140 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y    , x - 1), maxVal);
maxVal            141 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y    , x + 1), maxVal);
maxVal            143 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y + 1, x - 1), maxVal);
maxVal            144 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y + 1, x    ), maxVal);
maxVal            145 modules/imgproc/src/opencl/gftt.cl             maxVal = max(GET_SRC_32F(y + 1, x + 1), maxVal);
maxVal            147 modules/imgproc/src/opencl/gftt.cl             if (val == maxVal)
maxVal            151 modules/imgproc/src/opencl/pyr_down.cl #define EXTRAPOLATE_(val, maxVal)   val
maxVal            183 modules/imgproc/src/opencl/pyr_down.cl #define EXTRAPOLATE_(val, maxVal)   EXTRAPOLATE(val, maxVal)
maxVal            375 modules/imgproc/test/ocl/test_imgproc.cpp         double maxVal = randomDouble(20.0, 127.0);
maxVal            376 modules/imgproc/test/ocl/test_imgproc.cpp         double thresh = randomDouble(0.0, maxVal);
maxVal            378 modules/imgproc/test/ocl/test_imgproc.cpp         OCL_OFF(cv::threshold(src_roi, dst_roi, thresh, maxVal, thresholdType));
maxVal            379 modules/imgproc/test/ocl/test_imgproc.cpp         OCL_ON(cv::threshold(usrc_roi, udst_roi, thresh, maxVal, thresholdType));
maxVal            116 modules/ml/include/opencv2/ml.hpp     double maxVal; //!< Maximum value of the statmodel parameter. Default value is 0.
maxVal            311 modules/ml/src/em.cpp             double maxVal = 0;
maxVal            312 modules/ml/src/em.cpp             minMaxLoc(sampleProbs, 0, &maxVal);
maxVal            313 modules/ml/src/em.cpp             if(maxVal < FLT_EPSILON)
maxVal             45 modules/ml/src/inner_functions.cpp ParamGrid::ParamGrid() { minVal = maxVal = 0.; logStep = 1; }
maxVal             49 modules/ml/src/inner_functions.cpp     maxVal = std::max(_minVal, _maxVal);
maxVal             97 modules/ml/src/svm.cpp     if( pg.minVal > pg.maxVal )
maxVal            371 modules/ml/src/svm.cpp         grid.maxVal = 500;
maxVal            377 modules/ml/src/svm.cpp         grid.maxVal = 0.6;
maxVal            383 modules/ml/src/svm.cpp         grid.maxVal = 100;
maxVal            389 modules/ml/src/svm.cpp         grid.maxVal = 0.2;
maxVal            395 modules/ml/src/svm.cpp         grid.maxVal = 300;
maxVal            401 modules/ml/src/svm.cpp         grid.maxVal = 4;
maxVal           1648 modules/ml/src/svm.cpp             grid.minVal = grid.maxVal = params.param; \
maxVal           1663 modules/ml/src/svm.cpp             degree_grid.minVal = degree_grid.maxVal = params.degree;
maxVal           1665 modules/ml/src/svm.cpp             gamma_grid.minVal = gamma_grid.maxVal = params.gamma;
maxVal           1667 modules/ml/src/svm.cpp             coef_grid.minVal = coef_grid.maxVal = params.coef0;
maxVal           1669 modules/ml/src/svm.cpp             C_grid.minVal = C_grid.maxVal = params.C;
maxVal           1671 modules/ml/src/svm.cpp             nu_grid.minVal = nu_grid.maxVal = params.nu;
maxVal           1673 modules/ml/src/svm.cpp             p_grid.minVal = p_grid.maxVal = params.p;
maxVal           1766 modules/ml/src/svm.cpp             for( params.var = grid.minVal; params.var == grid.minVal || params.var < grid.maxVal; params.var = (grid.minVal == grid.maxVal) ? grid.maxVal + 1 : params.var * grid.logStep )
maxVal            122 modules/ml/test/test_emknearestkmeans.cpp     int maxVal = -1;
maxVal            126 modules/ml/test/test_emknearestkmeans.cpp         if( *it > maxVal)
maxVal            128 modules/ml/test/test_emknearestkmeans.cpp             maxVal = *it;
maxVal             92 modules/ts/include/opencv2/ts.hpp CV_EXPORTS Mat randomMat(RNG& rng, Size size, int type, double minVal, double maxVal, bool useRoi);
maxVal             93 modules/ts/include/opencv2/ts.hpp CV_EXPORTS Mat randomMat(RNG& rng, const vector<int>& size, int type, double minVal, double maxVal, bool useRoi);
maxVal             60 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS int randomInt(int minVal, int maxVal);
maxVal             61 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS double randomDouble(double minVal, double maxVal);
maxVal             62 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS cv::Size randomSize(int minVal, int maxVal);
maxVal             63 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS cv::Scalar randomScalar(double minVal, double maxVal);
maxVal             64 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS cv::Mat randomMat(cv::Size size, int type, double minVal = 0.0, double maxVal = 255.0);
maxVal            204 modules/ts/include/opencv2/ts/ocl_test.hpp     int randomInt(int minVal, int maxVal)
maxVal            206 modules/ts/include/opencv2/ts/ocl_test.hpp         return rng.uniform(minVal, maxVal);
maxVal            209 modules/ts/include/opencv2/ts/ocl_test.hpp     double randomDouble(double minVal, double maxVal)
maxVal            211 modules/ts/include/opencv2/ts/ocl_test.hpp         return rng.uniform(minVal, maxVal);
maxVal            214 modules/ts/include/opencv2/ts/ocl_test.hpp     double randomDoubleLog(double minVal, double maxVal)
maxVal            217 modules/ts/include/opencv2/ts/ocl_test.hpp         double logMax = log((double)maxVal + 1);
maxVal            220 modules/ts/include/opencv2/ts/ocl_test.hpp         CV_Assert(v >= minVal && (v < maxVal || (v == minVal && v == maxVal)));
maxVal            224 modules/ts/include/opencv2/ts/ocl_test.hpp     Size randomSize(int minVal, int maxVal)
maxVal            227 modules/ts/include/opencv2/ts/ocl_test.hpp         return cv::Size((int)randomDoubleLog(minVal, maxVal), (int)randomDoubleLog(minVal, maxVal));
maxVal            229 modules/ts/include/opencv2/ts/ocl_test.hpp         return cv::Size(randomInt(minVal, maxVal), randomInt(minVal, maxVal));
maxVal            238 modules/ts/include/opencv2/ts/ocl_test.hpp         return cv::Size(randomInt(minVal, maxVal), randomInt(minVal, maxVal));
maxVal            242 modules/ts/include/opencv2/ts/ocl_test.hpp     Scalar randomScalar(double minVal, double maxVal)
maxVal            244 modules/ts/include/opencv2/ts/ocl_test.hpp         return Scalar(randomDouble(minVal, maxVal), randomDouble(minVal, maxVal), randomDouble(minVal, maxVal), randomDouble(minVal, maxVal));
maxVal            247 modules/ts/include/opencv2/ts/ocl_test.hpp     Mat randomMat(Size size, int type, double minVal, double maxVal, bool useRoi = false)
maxVal            250 modules/ts/include/opencv2/ts/ocl_test.hpp         return cvtest::randomMat(dataRng, size, type, minVal, maxVal, useRoi);
maxVal            269 modules/ts/include/opencv2/ts/ocl_test.hpp     void randomSubMat(Mat& whole, Mat& subMat, const Size& roiSize, const Border& border, int type, double minVal, double maxVal)
maxVal            272 modules/ts/include/opencv2/ts/ocl_test.hpp         whole = randomMat(wholeSize, type, minVal, maxVal, false);
maxVal             62 modules/ts/src/cuda_test.cpp     int randomInt(int minVal, int maxVal)
maxVal             65 modules/ts/src/cuda_test.cpp         return rng.uniform(minVal, maxVal);
maxVal             68 modules/ts/src/cuda_test.cpp     double randomDouble(double minVal, double maxVal)
maxVal             71 modules/ts/src/cuda_test.cpp         return rng.uniform(minVal, maxVal);
maxVal             74 modules/ts/src/cuda_test.cpp     Size randomSize(int minVal, int maxVal)
maxVal             76 modules/ts/src/cuda_test.cpp         return Size(randomInt(minVal, maxVal), randomInt(minVal, maxVal));
maxVal             79 modules/ts/src/cuda_test.cpp     Scalar randomScalar(double minVal, double maxVal)
maxVal             81 modules/ts/src/cuda_test.cpp         return Scalar(randomDouble(minVal, maxVal), randomDouble(minVal, maxVal), randomDouble(minVal, maxVal), randomDouble(minVal, maxVal));
maxVal             84 modules/ts/src/cuda_test.cpp     Mat randomMat(Size size, int type, double minVal, double maxVal)
maxVal             86 modules/ts/src/cuda_test.cpp         return randomMat(TS::ptr()->get_rng(), size, type, minVal, maxVal, false);
maxVal            270 modules/ts/src/cuda_test.cpp         double maxVal = -std::numeric_limits<double>::max();
maxVal            290 modules/ts/src/cuda_test.cpp                     if (val > maxVal)
maxVal            292 modules/ts/src/cuda_test.cpp                         maxVal = val;
maxVal            300 modules/ts/src/cuda_test.cpp         if (maxVal_) *maxVal_ = maxVal;
maxVal            340 modules/ts/src/cuda_test.cpp         double maxVal = 0.0;
maxVal            342 modules/ts/src/cuda_test.cpp         minMaxLocGold(diff, 0, &maxVal, 0, &maxLoc);
maxVal            344 modules/ts/src/cuda_test.cpp         if (maxVal > eps)
maxVal            347 modules/ts/src/cuda_test.cpp                                       << "\" is " << maxVal << " at (" << maxLoc.y << ", " << maxLoc.x / m1.channels() << ")"
maxVal            108 modules/ts/src/ts_func.cpp Mat randomMat(RNG& rng, Size size, int type, double minVal, double maxVal, bool useRoi)
maxVal            119 modules/ts/src/ts_func.cpp     rng.fill(m, RNG::UNIFORM, minVal, maxVal);
maxVal            125 modules/ts/src/ts_func.cpp Mat randomMat(RNG& rng, const vector<int>& size, int type, double minVal, double maxVal, bool useRoi)
maxVal            145 modules/ts/src/ts_func.cpp     rng.fill(m, RNG::UNIFORM, minVal, maxVal);
maxVal            355 samples/cpp/intelperc_capture.cpp                 double minVal = 0.0; double maxVal = 0.0;
maxVal            356 samples/cpp/intelperc_capture.cpp                 minMaxIdx(depthImage, &minVal, &maxVal, g_closedDepthPoint);
maxVal             56 samples/cpp/mask_tmpl.cpp     double minVal, maxVal;
maxVal             59 samples/cpp/mask_tmpl.cpp     minMaxLoc(res, &minVal, &maxVal, &minLoc, &maxLoc);
maxVal             71 samples/cpp/tutorial_code/Histograms_Matching/MatchTemplate_Demo.cpp   double minVal; double maxVal; Point minLoc; Point maxLoc;
maxVal             74 samples/cpp/tutorial_code/Histograms_Matching/MatchTemplate_Demo.cpp   minMaxLoc( result, &minVal, &maxVal, &minLoc, &maxLoc, Mat() );
maxVal             53 samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp   double minVal; double maxVal;
maxVal             54 samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp   minMaxLoc( raw_dist, &minVal, &maxVal, 0, 0, Mat() );
maxVal             55 samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp   minVal = abs(minVal); maxVal = abs(maxVal);
maxVal             66 samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp               { drawing.at<Vec3b>(j,i)[2] = (uchar)(255 - raw_dist.at<float>(j,i)*255/maxVal); }
maxVal             49 samples/cpp/tutorial_code/calib3d/stereoBM/SBM_Sample.cpp   double minVal; double maxVal;
maxVal             51 samples/cpp/tutorial_code/calib3d/stereoBM/SBM_Sample.cpp   minMaxLoc( imgDisparity16S, &minVal, &maxVal );
maxVal             53 samples/cpp/tutorial_code/calib3d/stereoBM/SBM_Sample.cpp   printf("Min disp: %f Max value: %f \n", minVal, maxVal);
maxVal             56 samples/cpp/tutorial_code/calib3d/stereoBM/SBM_Sample.cpp   imgDisparity16S.convertTo( imgDisparity8U, CV_8UC1, 255/(maxVal - minVal));
maxVal             71 samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/OcvTransform.cpp inline T clamp(const T& val, const T& minVal, const T& maxVal)
maxVal             73 samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/OcvTransform.cpp     return (val < minVal ? minVal : (val > maxVal ? maxVal : val));