Home
last modified time | relevance | path

Searched refs:maxVal (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/
H A Dfunctional.hpp566 …ce__ __forceinline__ thresh_binary_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_func()
570 return (src > thresh) * maxVal; in operator ()()
575 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_func()
578 T maxVal; member
583 … __forceinline__ thresh_binary_inv_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_inv_func()
587 return (src <= thresh) * maxVal; in operator ()()
592 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_inv_func()
595 T maxVal; member
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/
H A Dfunctional.hpp566 …ce__ __forceinline__ thresh_binary_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_func()
570 return (src > thresh) * maxVal; in operator ()()
575 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_func()
578 T maxVal; member
583 … __forceinline__ thresh_binary_inv_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_inv_func()
587 return (src <= thresh) * maxVal; in operator ()()
592 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_inv_func()
595 T maxVal; member
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/
H A Dfunctional.hpp566 …ce__ __forceinline__ thresh_binary_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_func()
570 return (src > thresh) * maxVal; in operator ()()
575 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_func()
578 T maxVal; member
583 … __forceinline__ thresh_binary_inv_func(T thresh_, T maxVal_) : thresh(thresh_), maxVal(maxVal_) {} in thresh_binary_inv_func()
587 return (src <= thresh) * maxVal; in operator ()()
592 : thresh(other.thresh), maxVal(other.maxVal) {} in thresh_binary_inv_func()
595 T maxVal; member
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/
H A Dcore.hpp822 CV_OUT double* maxVal = 0, CV_OUT Point* minLoc = 0,
849 CV_EXPORTS void minMaxIdx(InputArray src, double* minVal, double* maxVal = 0,
862 double* maxVal, int* minIdx = 0, int* maxIdx = 0);
1613 double minVal = -DBL_MAX, double maxVal = DBL_MAX);
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/
H A Dcore.hpp822 CV_OUT double* maxVal = 0, CV_OUT Point* minLoc = 0,
849 CV_EXPORTS void minMaxIdx(InputArray src, double* minVal, double* maxVal = 0,
862 double* maxVal, int* minIdx = 0, int* maxIdx = 0);
1613 double minVal = -DBL_MAX, double maxVal = DBL_MAX);
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/
H A Dcore.hpp822 CV_OUT double* maxVal = 0, CV_OUT Point* minLoc = 0,
849 CV_EXPORTS void minMaxIdx(InputArray src, double* minVal, double* maxVal = 0,
862 double* maxVal, int* minIdx = 0, int* maxIdx = 0);
1613 double minVal = -DBL_MAX, double maxVal = DBL_MAX);
H A Dml.hpp116 CV_PROP_RW double maxVal; //!< Maximum value of the statmodel parameter. Default value is 0. member in cv::ml::ParamGrid
133 CV_WRAP static Ptr<ParamGrid> create(double minVal=0., double maxVal=0., double logstep=1.);
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/j2s/
H A DcJSON_Utils.cpp119 double maxVal = fabs(a) > fabs(b) ? fabs(a) : fabs(b); in compare_double() local
120 return (fabs(a - b) <= maxVal * DBL_EPSILON); in compare_double()
H A DcJSON.cpp544 double maxVal = fabs(a) > fabs(b) ? fabs(a) : fabs(b); in compare_double() local
545 return (fabs(a - b) <= maxVal * DBL_EPSILON); in compare_double()
/OK3568_Linux_fs/app/lvgl_demo/cJSON/
H A DcJSON.c540 double maxVal = fabs(a) > fabs(b) ? fabs(a) : fabs(b); in compare_double() local
541 return (fabs(a - b) <= maxVal * DBL_EPSILON); in compare_double()