Home
last modified time | relevance | path

Searched refs:CV_HIST_ARRAY (Results 1 – 11 of 11) sorted by relevance

/external/opencv/cv/src/
Dcvcalccontrasthistogram.cpp75 if( hist->type != CV_HIST_ARRAY )
93 if( hist->type == CV_HIST_ARRAY )
189 if( hist->type != CV_HIST_ARRAY )
207 if( hist->type == CV_HIST_ARRAY )
Dcvthresh.cpp343 CV_CALL( hist = cvCreateHist( 1, &hist_size, CV_HIST_ARRAY, &ranges )); in cvThreshold()
Dcvmotempl.cpp328 CV_CALL( hist = cvCreateHist( 1, &hist_size, CV_HIST_ARRAY, &ranges )); in cvCalcGlobalOrientation()
Dcvhistogram.cpp63 if( type == CV_HIST_ARRAY ) in cvCreateHist()
696 !is_sparse ? CV_HIST_ARRAY : CV_HIST_SPARSE, 0, 0 )); in cvCopyHist()
2331 CV_CALL( hist = cvCreateHist( 1, &hist_sz, CV_HIST_ARRAY )); in cvEqualizeHist()
/external/opencv3/modules/python/test/
Dleak3.py8 h = cv.CreateHist([40], cv.CV_HIST_ARRAY, [[0,255]], 1)
Dcalchist.py28 hist = cv.CreateHist([h_bins, s_bins], cv.CV_HIST_ARRAY, ranges, 1)
/external/opencv3/modules/imgproc/test/
Dtest_histograms.cpp149 hist_type = cvtest::randInt(rng) % 2 ? CV_HIST_SPARSE : CV_HIST_ARRAY; in get_hist_params()
250 if( hist_type == CV_HIST_ARRAY ) in init_hist()
360 if( hist_type == CV_HIST_ARRAY ) in init_hist()
631 if( hist_type != CV_HIST_ARRAY && test_cpp ) in run_func()
729 if( hist_type != CV_HIST_ARRAY && test_cpp ) in run_func()
747 if( hist_type == CV_HIST_ARRAY ) in validate_test_results()
841 if( hist_type == CV_HIST_ARRAY ) in prepare_test_case()
895 if( hist_type == CV_HIST_ARRAY ) in validate_test_results()
906 if( hist_type == CV_HIST_ARRAY ) in validate_test_results()
981 if( hist_type != CV_HIST_ARRAY && test_cpp ) in run_func()
[all …]
/external/opencv/cvaux/src/
Dcamshift.cpp263 m_hist = cvCreateHist( c_dims, dims, CV_HIST_ARRAY, 0, 0 ); in set_hist_dims()
/external/opencv/cxcore/include/
Dcxtypes.h801 #define CV_HIST_ARRAY 0 macro
/external/opencv3/modules/core/include/opencv2/core/
Dtypes_c.h740 #define CV_HIST_ARRAY 0 macro
/external/opencv3/modules/imgproc/src/
Dhistogram.cpp2609 if( type == CV_HIST_ARRAY ) in cvCreateHist()
3082 dst = cvCreateHist( dims1, size1, !is_sparse ? CV_HIST_ARRAY : CV_HIST_SPARSE, 0, 0 ); in cvCopyHist()
3709 if(type == CV_HIST_ARRAY) in icvReadHist()