Searched defs:clahe (Results 1 - 7 of 7) sorted by relevance

/external/opencv3/modules/cudaimgproc/perf/
H A Dperf_histogram.cpp200 cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit); local
204 TEST_CYCLE() clahe->apply(d_src, dst);
210 cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit); local
213 TEST_CYCLE() clahe->apply(src, dst);
/external/opencv3/modules/cudaimgproc/test/
H A Dtest_histogram.cpp199 cv::Ptr<cv::cuda::CLAHE> clahe = cv::cuda::createCLAHE(clipLimit); local
201 clahe->apply(loadMat(src), dst);
/external/opencv3/modules/imgproc/perf/
H A Dperf_histogram.cpp135 Ptr<CLAHE> clahe = createCLAHE(clipLimit); local
138 TEST_CYCLE() clahe->apply(src, dst);
/external/opencv3/modules/imgproc/
H A Dopencl_kernels_imgproc.cpp783 const struct ProgramEntry clahe={"clahe", member in namespace:cv::ocl::imgproc
948 ProgramSource clahe_oclsrc(clahe.programStr);
/external/opencv3/modules/imgproc/perf/opencl/
H A Dperf_imgproc.cpp294 cv::Ptr<cv::CLAHE> clahe = cv::createCLAHE(clipLimit); local
295 OCL_TEST_CYCLE() clahe->apply(src, dst);
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_imgproc.cpp428 Ptr<CLAHE> clahe = cv::createCLAHE(clipLimit, gridSize); local
430 OCL_OFF(clahe->apply(src_roi, dst_roi));
431 OCL_ON(clahe->apply(usrc_roi, udst_roi));
/external/opencv3/modules/imgproc/src/
H A Dclahe.cpp51 namespace clahe namespace
399 if (useOpenCL && clahe::calcLut(_srcForLut, ulut_, tilesX_, tilesY_, tileSize, clipLimit, lutScale) )
400 if( clahe::transform(_src, _dst, ulut_, tilesX_, tilesY_, tileSize) )

Completed in 187 milliseconds