/external/opencv3/modules/cudaimgproc/perf/ |
D | perf_histogram.cpp | 200 cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit); variable 204 TEST_CYCLE() clahe->apply(d_src, dst); 210 cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit); variable 213 TEST_CYCLE() clahe->apply(src, dst);
|
/external/opencv3/modules/imgproc/ |
D | opencl_kernels_imgproc.cpp | 783 const struct ProgramEntry clahe={"clahe", variable 948 ProgramSource clahe_oclsrc(clahe.programStr);
|
D | opencl_kernels_imgproc.hpp | 26 extern const struct ProgramEntry clahe;
|
/external/opencv3/modules/cudaimgproc/test/ |
D | test_histogram.cpp | 199 cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit); in CUDA_TEST_P() local 201 clahe->apply(loadMat(src), dst); in CUDA_TEST_P()
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_histogram.cpp | 135 Ptr<CLAHE> clahe = createCLAHE(clipLimit); variable 138 TEST_CYCLE() clahe->apply(src, dst);
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_imgproc.cpp | 428 Ptr<CLAHE> clahe = cv::createCLAHE(clipLimit, gridSize); in OCL_TEST_P() local 430 OCL_OFF(clahe->apply(src_roi, dst_roi)); in OCL_TEST_P() 431 OCL_ON(clahe->apply(usrc_roi, udst_roi)); in OCL_TEST_P()
|
/external/opencv3/doc/tutorials/introduction/transition_guide/ |
D | transition_guide.markdown | 87 double clipLimit = clahe->getClipLimit(); 88 clahe->setClipLimit(clipLimit); 90 double clipLimit = clahe->getDouble("clipLimit"); 91 clahe->set("clipLimit", clipLimit); 92 clahe->setDouble("clipLimit", clipLimit);
|
/external/opencv3/modules/imgproc/perf/opencl/ |
D | perf_imgproc.cpp | 294 cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit); in OCL_PERF_TEST_P() local 295 OCL_TEST_CYCLE() clahe->apply(src, dst); in OCL_PERF_TEST_P()
|
/external/opencv3/modules/imgproc/src/ |
D | clahe.cpp | 51 namespace clahe namespace 399 …if (useOpenCL && clahe::calcLut(_srcForLut, ulut_, tilesX_, tilesY_, tileSize, clipLimit, lutScale… in apply() 400 if( clahe::transform(_src, _dst, ulut_, tilesX_, tilesY_, tileSize) ) in apply()
|
/external/opencv3/modules/cudaimgproc/src/ |
D | histogram.cpp | 130 namespace clahe namespace 218 …clahe::calcLut(srcForLut, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), clip… in apply() 220 …clahe::transform(src, dst, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), str… in apply()
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | clahe.cu | 55 namespace clahe namespace
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_equalization/ |
D | py_histogram_equalization.markdown | 130 clahe = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8,8)) 131 cl1 = clahe.apply(img)
|
/external/opencv3/ |
D | Android.mk | 702 modules/imgproc/src/clahe.cpp \
|