/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/ |
D | compareHist_Demo.cpp | 66 normalize( hist_base, hist_base, 0, 1, NORM_MINMAX, -1, Mat() ); in main() 69 normalize( hist_half_down, hist_half_down, 0, 1, NORM_MINMAX, -1, Mat() ); in main() 72 normalize( hist_test1, hist_test1, 0, 1, NORM_MINMAX, -1, Mat() ); in main() 75 normalize( hist_test2, hist_test2, 0, 1, NORM_MINMAX, -1, Mat() ); in main()
|
D | calcHist_Demo.cpp | 56 normalize(b_hist, b_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main() 57 normalize(g_hist, g_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main() 58 normalize(r_hist, r_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main()
|
D | calcBackProject_Demo1.cpp | 67 normalize( hist, hist, 0, 255, NORM_MINMAX, -1, Mat() ); in Hist_and_Backproj()
|
D | MatchTemplate_Demo.cpp | 68 normalize( result, result, 0, 1, NORM_MINMAX, -1, Mat() ); in MatchingMethod()
|
D | calcBackProject_Demo2.cpp | 95 normalize( hist, hist, 0, 255, NORM_MINMAX, -1, Mat() ); in Hist_and_Backproj()
|
/external/opencv3/samples/python2/ |
D | hist.py | 31 cv2.normalize(hist_item,hist_item,0,255,cv2.NORM_MINMAX) 45 cv2.normalize(hist_item,hist_item,0,255,cv2.NORM_MINMAX) 108 norm = cv2.normalize(gray,alpha = 0,beta = 255,norm_type = cv2.NORM_MINMAX)
|
D | mouse_and_match.py | 36 result8 = cv2.normalize(result,None,0,255,cv2.NORM_MINMAX,cv2.CV_8U)
|
D | dft.py | 96 cv2.normalize(log_spectrum, log_spectrum, 0.0, 1.0, cv2.NORM_MINMAX)
|
D | camshift.py | 86 cv2.normalize(hist, hist, 0, 255, cv2.NORM_MINMAX);
|
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/ |
D | histogram_comparison.markdown | 106 normalize( hist_base, hist_base, 0, 1, NORM_MINMAX, -1, Mat() ); 109 normalize( hist_half_down, hist_half_down, 0, 1, NORM_MINMAX, -1, Mat() ); 112 normalize( hist_test1, hist_test1, 0, 1, NORM_MINMAX, -1, Mat() ); 115 normalize( hist_test2, hist_test2, 0, 1, NORM_MINMAX, -1, Mat() );
|
/external/opencv3/samples/cpp/tutorial_code/TrackingMotion/ |
D | cornerHarris_Demo.cpp | 67 normalize( dst, dst_norm, 0, 255, NORM_MINMAX, CV_32FC1, Mat() ); in cornerHarris_demo()
|
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_calculation/ |
D | histogram_calculation.markdown | 152 normalize(b_hist, b_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); 153 normalize(g_hist, g_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); 154 normalize(r_hist, r_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); 162 - **NORM_MINMAX:** Argument that indicates the type of normalization (as described above, it
|
/external/opencv3/modules/core/perf/ |
D | perf_norm.cpp | 10 CV_FLAGS(NormType, NORM_INF, NORM_L1, NORM_L2, NORM_TYPE_MASK, NORM_RELATIVE, NORM_MINMAX) 197 TEST_CYCLE() normalize(src, dst, 20., 100., NORM_MINMAX); in PERF_TEST_P()
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | normalize.cu | 244 …t( normType == NORM_INF || normType == NORM_L1 || normType == NORM_L2 || normType == NORM_MINMAX ); in normalize() 269 if (normType == NORM_MINMAX) in normalize()
|
/external/opencv3/samples/cpp/ |
D | demhist.cpp | 48 normalize(hist, hist, 0, histImage.rows, NORM_MINMAX, CV_32F); in updateBrightnessContrast()
|
D | dft.cpp | 78 normalize(mag, mag, 0, 1, NORM_MINMAX); in main()
|
D | pca.cpp | 86 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1); in toGrayscale()
|
D | camshiftdemo.cpp | 134 normalize(hist, hist, 0, 255, NORM_MINMAX); in main()
|
/external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/ |
D | discrete_fourier_transform.cpp | 71 normalize(magI, magI, 0, 1, NORM_MINMAX); // Transform the matrix with float values into a in main()
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
D | cuda_perf.hpp | 60 CV_ENUM(NormType, NORM_INF, NORM_L1, NORM_L2, NORM_HAMMING, NORM_MINMAX)
|
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
D | imageSegmentation.cpp | 88 normalize(dist, dist, 0, 1., NORM_MINMAX); in main()
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_backprojection/ |
D | py_histogram_backprojection.markdown | 67 cv2.normalize(B,B,0,255,cv2.NORM_MINMAX) 98 cv2.normalize(roihist,roihist,0,255,cv2.NORM_MINMAX)
|
/external/opencv3/doc/py_tutorials/py_video/py_meanshift/ |
D | py_meanshift.markdown | 61 cv2.normalize(roi_hist,roi_hist,0,255,cv2.NORM_MINMAX) 135 cv2.normalize(roi_hist,roi_hist,0,255,cv2.NORM_MINMAX)
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_histogram.cpp | 166 normalize(hist1, hist1, 0, 255, NORM_MINMAX, -1, Mat()); in PARAM_TEST_CASE()
|
/external/opencv3/samples/tapi/ |
D | camshift.cpp | 136 cv::normalize(hist, hist, 0, 255, cv::NORM_MINMAX); in main()
|