Home
last modified time | relevance | path

Searched refs:NORM_MINMAX (Results 1 – 25 of 36) sorted by relevance

12

/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
DcompareHist_Demo.cpp66 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()
DcalcHist_Demo.cpp56 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()
DcalcBackProject_Demo1.cpp67 normalize( hist, hist, 0, 255, NORM_MINMAX, -1, Mat() ); in Hist_and_Backproj()
DMatchTemplate_Demo.cpp68 normalize( result, result, 0, 1, NORM_MINMAX, -1, Mat() ); in MatchingMethod()
DcalcBackProject_Demo2.cpp95 normalize( hist, hist, 0, 255, NORM_MINMAX, -1, Mat() ); in Hist_and_Backproj()
/external/opencv3/samples/python2/
Dhist.py31 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)
Dmouse_and_match.py36 result8 = cv2.normalize(result,None,0,255,cv2.NORM_MINMAX,cv2.CV_8U)
Ddft.py96 cv2.normalize(log_spectrum, log_spectrum, 0.0, 1.0, cv2.NORM_MINMAX)
Dcamshift.py86 cv2.normalize(hist, hist, 0, 255, cv2.NORM_MINMAX);
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_comparison/
Dhistogram_comparison.markdown106 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/
DcornerHarris_Demo.cpp67 normalize( dst, dst_norm, 0, 255, NORM_MINMAX, CV_32FC1, Mat() ); in cornerHarris_demo()
/external/opencv3/doc/tutorials/imgproc/histograms/histogram_calculation/
Dhistogram_calculation.markdown152 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/
Dperf_norm.cpp10 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/
Dnormalize.cu244 …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/
Ddemhist.cpp48 normalize(hist, hist, 0, histImage.rows, NORM_MINMAX, CV_32F); in updateBrightnessContrast()
Ddft.cpp78 normalize(mag, mag, 0, 1, NORM_MINMAX); in main()
Dpca.cpp86 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1); in toGrayscale()
Dcamshiftdemo.cpp134 normalize(hist, hist, 0, 255, NORM_MINMAX); in main()
/external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
Ddiscrete_fourier_transform.cpp71 normalize(magI, magI, 0, 1, NORM_MINMAX); // Transform the matrix with float values into a in main()
/external/opencv3/modules/ts/include/opencv2/ts/
Dcuda_perf.hpp60 CV_ENUM(NormType, NORM_INF, NORM_L1, NORM_L2, NORM_HAMMING, NORM_MINMAX)
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DimageSegmentation.cpp88 normalize(dist, dist, 0, 1., NORM_MINMAX); in main()
/external/opencv3/doc/py_tutorials/py_imgproc/py_histograms/py_histogram_backprojection/
Dpy_histogram_backprojection.markdown67 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/
Dpy_meanshift.markdown61 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/
Dtest_histogram.cpp166 normalize(hist1, hist1, 0, 255, NORM_MINMAX, -1, Mat()); in PARAM_TEST_CASE()
/external/opencv3/samples/tapi/
Dcamshift.cpp136 cv::normalize(hist, hist, 0, 255, cv::NORM_MINMAX); in main()

12