clahe             200 modules/cudaimgproc/perf/perf_histogram.cpp         cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit);
clahe             204 modules/cudaimgproc/perf/perf_histogram.cpp         TEST_CYCLE() clahe->apply(d_src, dst);
clahe             210 modules/cudaimgproc/perf/perf_histogram.cpp         cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit);
clahe             213 modules/cudaimgproc/perf/perf_histogram.cpp         TEST_CYCLE() clahe->apply(src, dst);
clahe             218 modules/cudaimgproc/src/histogram.cpp         clahe::calcLut(srcForLut, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), clipLimit, lutScale, stream);
clahe             220 modules/cudaimgproc/src/histogram.cpp         clahe::transform(src, dst, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), stream);
clahe             199 modules/cudaimgproc/test/test_histogram.cpp     cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit);
clahe             201 modules/cudaimgproc/test/test_histogram.cpp     clahe->apply(loadMat(src), dst);
clahe             294 modules/imgproc/perf/opencl/perf_imgproc.cpp     cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit);
clahe             295 modules/imgproc/perf/opencl/perf_imgproc.cpp     OCL_TEST_CYCLE() clahe->apply(src, dst);
clahe             135 modules/imgproc/perf/perf_histogram.cpp     Ptr<CLAHE> clahe = createCLAHE(clipLimit);
clahe             138 modules/imgproc/perf/perf_histogram.cpp     TEST_CYCLE() clahe->apply(src, dst);
clahe             399 modules/imgproc/src/clahe.cpp         if (useOpenCL && clahe::calcLut(_srcForLut, ulut_, tilesX_, tilesY_, tileSize, clipLimit, lutScale) )
clahe             400 modules/imgproc/src/clahe.cpp             if( clahe::transform(_src, _dst, ulut_, tilesX_, tilesY_, tileSize) )
clahe             428 modules/imgproc/test/ocl/test_imgproc.cpp         Ptr<CLAHE> clahe = cv::createCLAHE(clipLimit, gridSize);
clahe             430 modules/imgproc/test/ocl/test_imgproc.cpp         OCL_OFF(clahe->apply(src_roi, dst_roi));
clahe             431 modules/imgproc/test/ocl/test_imgproc.cpp         OCL_ON(clahe->apply(usrc_roi, udst_roi));