Home
last modified time | relevance | path

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

1234567

/dports/graphics/opencv/opencv-4.5.3/modules/python/test/
H A Dtest_dft.py31 refMagnitide = cv.normalize(refMagnitide, 0.0, 1.0, cv.NORM_MINMAX)
32 testMagnitude = cv.normalize(testMagnitude, 0.0, 1.0, cv.NORM_MINMAX)
43 img_backTest = cv.normalize(img_backTest, 0.0, 1.0, cv.NORM_MINMAX)
44 img_back = cv.normalize(img_back, 0.0, 1.0, cv.NORM_MINMAX)
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/Histograms_Matching/
H A DcompareHist_Demo.cpp68 normalize( hist_base, hist_base, 0, 1, NORM_MINMAX, -1, Mat() ); in main()
71 normalize( hist_half_down, hist_half_down, 0, 1, NORM_MINMAX, -1, Mat() ); in main()
74 normalize( hist_test1, hist_test1, 0, 1, NORM_MINMAX, -1, Mat() ); in main()
77 normalize( hist_test2, hist_test2, 0, 1, NORM_MINMAX, -1, Mat() ); in main()
H A DcalcHist_Demo.cpp62 normalize(b_hist, b_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main()
63 normalize(g_hist, g_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main()
64 normalize(r_hist, r_hist, 0, histImage.rows, NORM_MINMAX, -1, Mat() ); in main()
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/Histograms_Matching/histogram_comparison/
H A DcompareHist_Demo.py48 cv.normalize(hist_base, hist_base, alpha=0, beta=1, norm_type=cv.NORM_MINMAX)
51 cv.normalize(hist_half_down, hist_half_down, alpha=0, beta=1, norm_type=cv.NORM_MINMAX)
54 cv.normalize(hist_test1, hist_test1, alpha=0, beta=1, norm_type=cv.NORM_MINMAX)
57 cv.normalize(hist_test2, hist_test2, alpha=0, beta=1, norm_type=cv.NORM_MINMAX)
/dports/graphics/opencv/opencv-4.5.3/samples/java/tutorial_code/Histograms_Matching/histogram_comparison/
H A DCompareHistDemo.java55 Core.normalize(histBase, histBase, 0, 1, Core.NORM_MINMAX); in run()
59 Core.normalize(histHalfDown, histHalfDown, 0, 1, Core.NORM_MINMAX); in run()
63 Core.normalize(histTest1, histTest1, 0, 1, Core.NORM_MINMAX); in run()
67 Core.normalize(histTest2, histTest2, 0, 1, Core.NORM_MINMAX); in run()
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/Histograms_Matching/histogram_calculation/
H A DcalcHist_Demo.py49 cv.normalize(b_hist, b_hist, alpha=0, beta=hist_h, norm_type=cv.NORM_MINMAX)
50 cv.normalize(g_hist, g_hist, alpha=0, beta=hist_h, norm_type=cv.NORM_MINMAX)
51 cv.normalize(r_hist, r_hist, alpha=0, beta=hist_h, norm_type=cv.NORM_MINMAX)
/dports/graphics/opencv/opencv-4.5.3/samples/python/
H A Dhist.py34 cv.normalize(hist_item,hist_item,0,255,cv.NORM_MINMAX)
48 cv.normalize(hist_item,hist_item,0,255,cv.NORM_MINMAX)
110 norm = cv.normalize(gray, gray, alpha = 0,beta = 255,norm_type = cv.NORM_MINMAX)
/dports/graphics/opencv/opencv-4.5.3/samples/java/tutorial_code/Histograms_Matching/histogram_calculation/
H A DCalcHistDemo.java59 Core.normalize(bHist, bHist, 0, histImage.rows(), Core.NORM_MINMAX); in run()
60 Core.normalize(gHist, gHist, 0, histImage.rows(), Core.NORM_MINMAX); in run()
61 Core.normalize(rHist, rHist, 0, histImage.rows(), Core.NORM_MINMAX); in run()
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/ImgProc/periodic_noise_removing_filter/
H A Dperiodic_noise_removing_filter.cpp37 normalize(imgPSD, imgPSD, 0, 255, NORM_MINMAX); in main()
55 normalize(imgOut, imgOut, 0, 255, NORM_MINMAX); in main()
59 normalize(H, H, 0, 255, NORM_MINMAX); in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/
H A DOpenEXRimages_HDR_Retina_toneMapping.cpp34 normalize(curve, windowNormalizedCurve, 0, 200, cv::NORM_MINMAX, CV_32F); in drawPlot()
64 cv::normalize(inputMat, outputMat, 0.0, 255.0, cv::NORM_MINMAX); in rescaleGrayLevelMat()
129 normalize(imageInputRescaled, imageInputRescaled, 0.0, 255.0, cv::NORM_MINMAX); in callBack_rescaleGrayLevelMat()
203 normalize(inputImage, inputImage, 0.0, 1.0, cv::NORM_MINMAX); in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/bioinspired/samples/cpp/
H A DOpenEXRimages_HDR_Retina_toneMapping.cpp33 normalize(curve, windowNormalizedCurve, 0, 200, cv::NORM_MINMAX, CV_32F); in drawPlot()
63 cv::normalize(inputMat, outputMat, 0.0, 255.0, cv::NORM_MINMAX); in rescaleGrayLevelMat()
128 normalize(imageInputRescaled, imageInputRescaled, 0.0, 255.0, cv::NORM_MINMAX); in callBack_rescaleGrayLevelMat()
201 normalize(inputImage, inputImage, 0.0, 1.0, cv::NORM_MINMAX); in main()
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/ImgProc/anisotropic_image_segmentation/
H A Danisotropic_image_segmentation.cpp49 normalize(imgCoherency, imgCoherency, 0, 255, NORM_MINMAX); in main()
50 normalize(imgOrientation, imgOrientation, 0, 255, NORM_MINMAX); in main()
/dports/graphics/digikam/digikam-7.4.0/core/tests/facesengine/preprocess/
H A Dtantriggspreprocessor.cpp142 cv::normalize(src, dst, 0, 255, cv::NORM_MINMAX, CV_8UC1); in normalize()
145 cv::normalize(src, dst, 0, 255, cv::NORM_MINMAX, CV_8UC3); in normalize()
/dports/devel/boost-docs/boost_1_72_0/libs/compute/example/
H A Dopencv_histogram.cpp82 cv::normalize(b_hist, b_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
83 cv::normalize(g_hist, g_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
84 cv::normalize(r_hist, r_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
/dports/devel/boost-python-libs/boost_1_72_0/libs/compute/example/
H A Dopencv_histogram.cpp82 cv::normalize(b_hist, b_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
83 cv::normalize(g_hist, g_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
84 cv::normalize(r_hist, r_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
/dports/devel/boost-libs/boost_1_72_0/libs/compute/example/
H A Dopencv_histogram.cpp82 cv::normalize(b_hist, b_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
83 cv::normalize(g_hist, g_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
84 cv::normalize(r_hist, r_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
/dports/devel/hyperscan/boost_1_75_0/libs/compute/example/
H A Dopencv_histogram.cpp82 cv::normalize(b_hist, b_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
83 cv::normalize(g_hist, g_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
84 cv::normalize(r_hist, r_hist, 0, histImage.rows, cv::NORM_MINMAX, -1, cv::Mat()); in showHistogramWindow()
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/imgProc/anisotropic_image_segmentation/
H A Danisotropic_image_segmentation.py85 imgCoherency = cv.normalize(imgCoherency, None, alpha=0, beta=1, norm_type=cv.NORM_MINMAX, dtype=cv…
86 imgOrientation = cv.normalize(imgOrientation, None, alpha=0, beta=1, norm_type=cv.NORM_MINMAX, dtyp…
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/gapi/porting_anisotropic_image_segmentation/
H A Dporting_anisotropic_image_segmentation_gapi.cpp49 cv::GMat imgCoherencyNorm = cv::gapi::normalize(imgCoherency, 0, 255, cv::NORM_MINMAX); in main()
50 cv::GMat imgOrientationNorm = cv::gapi::normalize(imgOrientation, 0, 255, cv::NORM_MINMAX); in main()
H A Dporting_anisotropic_image_segmentation_gapi_fluid.cpp54 cv::GMat imgCoherencyNorm = cv::gapi::normalize(imgCoherency, 0, 255, cv::NORM_MINMAX); in main()
55 cv::GMat imgOrientationNorm = cv::gapi::normalize(imgOrientation, 0, 255, cv::NORM_MINMAX); in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/face/samples/
H A Dfacerec_save_load.cpp38 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1); in norm_0_255()
41 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC3); in norm_0_255()
H A Dfacerec_fisherfaces.cpp38 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1); in norm_0_255()
41 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC3); in norm_0_255()
H A Dfacerec_eigenfaces.cpp38 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC1); in norm_0_255()
41 cv::normalize(_src, dst, 0, 255, NORM_MINMAX, CV_8UC3); in norm_0_255()
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/video/optical_flow/
H A Doptical_flow_dense.py14 hsv[...,2] = cv.normalize(mag,None,0,255,cv.NORM_MINMAX)
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/video/optical_flow/
H A Doptical_flow_dense.cpp39 normalize(magnitude, magn_norm, 0.0f, 1.0f, NORM_MINMAX); in main()

1234567