Home
last modified time | relevance | path

Searched refs:CV_COMP_CHISQR_ALT (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dtypes_c.h535 CV_COMP_CHISQR_ALT =4, enumerator
/external/opencv3/modules/imgproc/test/
Dtest_histograms.cpp1018 result0[CV_COMP_CHISQR_ALT] += (v0 - v1)*(v0 - v1)/(v0 + v1); in validate_test_results()
1052 result0[CV_COMP_CHISQR_ALT] += (v0 - v1)*(v0 - v1)/(v0 + v1); in validate_test_results()
1074 result0[CV_COMP_CHISQR_ALT] *= 2; in validate_test_results()
1090 i == CV_COMP_CHISQR_ALT ? "Alternative Chi-Square" : in validate_test_results()
/external/opencv3/modules/imgproc/src/
Dhistogram.cpp2298 if( (method == CV_COMP_CHISQR) || (method == CV_COMP_CHISQR_ALT)) in compareHist()
2457 if( method == CV_COMP_CHISQR_ALT ) in compareHist()
2488 …if( PH1->nzcount() > PH2->nzcount() && method != CV_COMP_CHISQR && method != CV_COMP_CHISQR_ALT &&… in compareHist()
2494 if( (method == CV_COMP_CHISQR) || (method == CV_COMP_CHISQR_ALT) ) in compareHist()
2583 if( method == CV_COMP_CHISQR_ALT ) in compareHist()
2925 … mat2->heap->active_count && method != CV_COMP_CHISQR && method != CV_COMP_CHISQR_ALT && method !=… in cvCompareHist()
2931 if( (method == CV_COMP_CHISQR) || (method == CV_COMP_CHISQR_ALT) ) in cvCompareHist()
3037 if( method == CV_COMP_CHISQR_ALT ) in cvCompareHist()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java97 CV_COMP_CHISQR_ALT = 4, field in Imgproc