Home
last modified time | relevance | path

Searched refs:clahe (Results 1 – 13 of 13) sorted by relevance

/external/opencv3/modules/cudaimgproc/perf/
Dperf_histogram.cpp200 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/
Dopencl_kernels_imgproc.cpp783 const struct ProgramEntry clahe={"clahe", variable
948 ProgramSource clahe_oclsrc(clahe.programStr);
Dopencl_kernels_imgproc.hpp26 extern const struct ProgramEntry clahe;
/external/opencv3/modules/cudaimgproc/test/
Dtest_histogram.cpp199 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/
Dperf_histogram.cpp135 Ptr<CLAHE> clahe = createCLAHE(clipLimit); variable
138 TEST_CYCLE() clahe->apply(src, dst);
/external/opencv3/modules/imgproc/test/ocl/
Dtest_imgproc.cpp428 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/
Dtransition_guide.markdown87 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/
Dperf_imgproc.cpp294 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/
Dclahe.cpp51 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/
Dhistogram.cpp130 namespace clahe namespace
218clahe::calcLut(srcForLut, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), clip… in apply()
220clahe::transform(src, dst, lut_, tilesX_, tilesY_, make_int2(tileSize.width, tileSize.height), str… in apply()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dclahe.cu55 namespace clahe namespace
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_equalization/
Dpy_histogram_equalization.markdown130 clahe = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8,8))
131 cl1 = clahe.apply(img)
/external/opencv3/
DAndroid.mk702 modules/imgproc/src/clahe.cpp \