/external/opencv3/modules/imgproc/test/ |
D | test_imgproc_umat.cpp | 63 equalizeHist(smallimg, result); in run() 67 equalizeHist(usmallimg, uresult); in run()
|
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_equalization/ |
D | histogram_equalization.markdown | 10 - To equalize histograms of images by using the OpenCV function @ref cv::equalizeHist 62 - Equalize the Histogram by using the OpenCV function @ref cv::equalizeHist 91 -# Apply histogram equalization with the function @ref cv::equalizeHist : 93 equalizeHist( src, dst );
|
/external/opencv3/modules/cudaimgproc/test/ |
D | test_histogram.cpp | 159 cv::cuda::equalizeHist(loadMat(src), dst); in CUDA_TEST_P() 162 cv::equalizeHist(src, dst_gold); in CUDA_TEST_P()
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_histogram.cpp | 103 PERF_TEST_P(MatSize, equalizeHist, in PERF_TEST_P() argument 114 equalizeHist(source, destination); in PERF_TEST_P()
|
/external/opencv3/modules/cudaimgproc/perf/ |
D | perf_histogram.cpp | 169 TEST_CYCLE() cv::cuda::equalizeHist(d_src, dst); in PERF_TEST_P() 177 TEST_CYCLE() cv::equalizeHist(src, dst); in PERF_TEST_P()
|
/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/ |
D | EqualizeHist_Demo.cpp | 38 equalizeHist( src, dst ); in main()
|
/external/opencv3/modules/objdetect/perf/opencl/ |
D | perf_cascades.cpp | 42 equalizeHist(img, img);
|
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Shared/ |
D | main.cpp | 133 equalizeHist(faces, faces); in cvDetectFaces()
|
/external/opencv3/modules/cudaimgproc/src/ |
D | histogram.cpp | 52 void cv::cuda::equalizeHist(InputArray, OutputArray, Stream&) { throw_no_cuda(); } in equalizeHist() function in cv::cuda 93 void equalizeHist(PtrStepSzb src, PtrStepSzb dst, const int* lut, cudaStream_t stream); 96 void cv::cuda::equalizeHist(InputArray _src, OutputArray _dst, Stream& _stream) in equalizeHist() function in cv::cuda 124 hist::equalizeHist(src, dst, lut.ptr<int>(), stream); in equalizeHist()
|
/external/opencv3/samples/python2/ |
D | facedetect.py | 46 gray = cv2.equalizeHist(gray)
|
D | hist.py | 97 equ = cv2.equalizeHist(gray)
|
/external/opencv3/samples/cpp/tutorial_code/objectDetection/ |
D | objectDetection.cpp | 60 equalizeHist( frame_gray, frame_gray ); in detectAndDisplay()
|
D | objectDetection2.cpp | 69 equalizeHist( frame_gray, frame_gray ); in detectAndDisplay()
|
/external/opencv3/doc/py_tutorials/py_bindings/py_bindings_basics/ |
D | py_bindings_basics.markdown | 55 when you call a function, say res = equalizeHist(img1,img2) in Python, you pass two numpy arrays and 57 then calls the equalizeHist() function in C++. Final result, res will be converted back into a Numpy 72 CV_EXPORTS_W void equalizeHist( InputArray src, OutputArray dst );
|
/external/opencv3/samples/winrt/FaceDetection/FaceDetection/ |
D | MainPage.xaml.cpp | 63 cv::equalizeHist(frame_gray, frame_gray);
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_imgproc.cpp | 184 OCL_OFF(cv::equalizeHist(src_roi, dst_roi)); in OCL_TEST_P() 185 OCL_ON(cv::equalizeHist(usrc_roi, udst_roi)); in OCL_TEST_P()
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 1036 TEST(equalizeHist) in TEST() argument 1046 equalizeHist(src, dst); in TEST() 1049 equalizeHist(src, dst); in TEST() 1055 cuda::equalizeHist(d_src, d_dst); in TEST() 1058 cuda::equalizeHist(d_src, d_dst); in TEST()
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_equalization/ |
D | py_histogram_equalization.markdown | 79 OpenCV has a function to do this, **cv2.equalizeHist()**. Its input is just grayscale image and 85 equ = cv2.equalizeHist(img)
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | hist.cu | 220 void equalizeHist(PtrStepSzb src, PtrStepSzb dst, const int* lut, cudaStream_t stream) in equalizeHist() function
|
/external/opencv3/doc/tutorials/objdetect/cascade_classifier/ |
D | cascade_classifier.markdown | 83 equalizeHist( frame_gray, frame_gray );
|
/external/opencv3/samples/cpp/ |
D | smiledetect.cpp | 175 equalizeHist( smallImg, smallImg ); in detectAndDraw()
|
D | facedetect.cpp | 217 equalizeHist( smallImg, smallImg ); in detectAndDraw()
|
D | ufacedetect.cpp | 208 equalizeHist( gray, gray ); in detectAndDraw()
|
/external/opencv3/modules/cudaimgproc/include/opencv2/ |
D | cudaimgproc.hpp | 212 CV_EXPORTS void equalizeHist(InputArray src, OutputArray dst, Stream& stream = Stream::Null());
|
/external/opencv3/doc/tutorials/introduction/transition_guide/ |
D | transition_guide.markdown | 213 ocl::equalizeHist(frameGray, frameGray); 230 equalizeHist(frameGray, frameGray);
|