maxVal_           552 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ thresh_binary_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {}
maxVal_           569 modules/core/include/opencv2/core/cuda/functional.hpp         __host__ __device__ __forceinline__ thresh_binary_inv_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {}
maxVal_           586 modules/core/include/opencv2/core/cuda/functional.hpp         explicit __host__ __device__ __forceinline__ thresh_trunc_func(T thresh_, T maxVal_ = 0) : thresh(thresh_) {(void)maxVal_;}
maxVal_           602 modules/core/include/opencv2/core/cuda/functional.hpp         explicit __host__ __device__ __forceinline__ thresh_to_zero_func(T thresh_, T maxVal_ = 0) : thresh(thresh_) {(void)maxVal_;}
maxVal_           618 modules/core/include/opencv2/core/cuda/functional.hpp         explicit __host__ __device__ __forceinline__ thresh_to_zero_inv_func(T thresh_, T maxVal_ = 0) : thresh(thresh_) {(void)maxVal_;}
maxVal_           105 modules/cudalegacy/src/gmg.cpp         double getMaxVal() const { return maxVal_; }
maxVal_           106 modules/cudalegacy/src/gmg.cpp         void setMaxVal(double val) { maxVal_ = (float) val; }
maxVal_           135 modules/cudalegacy/src/gmg.cpp         float minVal_, maxVal_;
maxVal_           160 modules/cudalegacy/src/gmg.cpp         minVal_ = maxVal_ = 0;
maxVal_           198 modules/cudalegacy/src/gmg.cpp             double maxVal = maxVal_;
maxVal_           200 modules/cudalegacy/src/gmg.cpp             if (minVal_ == 0 && maxVal_ == 0)
maxVal_           249 modules/cudalegacy/src/gmg.cpp         maxVal_ = max;
maxVal_           250 modules/cudalegacy/src/gmg.cpp         CV_Assert( minVal_ < maxVal_ );
maxVal_           267 modules/cudalegacy/src/gmg.cpp         loadConstants(frameSize_.width, frameSize_.height, minVal_, maxVal_,
maxVal_           106 modules/ts/include/opencv2/ts/cuda_test.hpp     CV_EXPORTS void minMaxLocGold(const cv::Mat& src, double* minVal_, double* maxVal_ = 0, cv::Point* minLoc_ = 0, cv::Point* maxLoc_ = 0, const cv::Mat& mask = cv::Mat());
maxVal_           258 modules/ts/src/cuda_test.cpp     void minMaxLocGold(const Mat& src, double* minVal_, double* maxVal_, Point* minLoc_, Point* maxLoc_, const Mat& mask)
maxVal_           262 modules/ts/src/cuda_test.cpp             minMaxLoc(src, minVal_, maxVal_, minLoc_, maxLoc_, mask);
maxVal_           300 modules/ts/src/cuda_test.cpp         if (maxVal_) *maxVal_ = maxVal;