Searched refs:CvHistogram (Results 1 – 12 of 12) sorted by relevance
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
D | imgproc_c.h | 646 CVAPI(CvHistogram*) cvCreateHist( int dims, int* sizes, int type, 661 CVAPI(void) cvSetHistBinRanges( CvHistogram* hist, float** ranges, 677 CVAPI(CvHistogram*) cvMakeHistHeaderForArray( 678 int dims, int* sizes, CvHistogram* hist, 689 CVAPI(void) cvReleaseHist( CvHistogram** hist ); 698 CVAPI(void) cvClearHist( CvHistogram* hist ); 713 CVAPI(void) cvGetMinMaxHistValue( const CvHistogram* hist, 727 CVAPI(void) cvNormalizeHist( CvHistogram* hist, double factor ); 737 CVAPI(void) cvThreshHist( CvHistogram* hist, double threshold ); 741 CVAPI(double) cvCompareHist( const CvHistogram* hist1, [all …]
|
/external/opencv/cv/src/ |
D | cvhistogram.cpp | 44 CvHistogram * 47 CvHistogram *hist = 0; in cvCreateHist() 58 CV_CALL( hist = (CvHistogram *)cvAlloc( sizeof( CvHistogram ))); in cvCreateHist() 91 CV_IMPL CvHistogram* 92 cvMakeHistHeaderForArray( int dims, int *sizes, CvHistogram *hist, in cvMakeHistHeaderForArray() 95 CvHistogram* result = 0; in cvMakeHistHeaderForArray() 135 cvReleaseHist( CvHistogram **hist ) in cvReleaseHist() 146 CvHistogram* temp = *hist; in cvReleaseHist() 171 cvClearHist( CvHistogram *hist ) in cvClearHist() 188 cvThreshHist( CvHistogram* hist, double thresh ) in cvThreshHist() [all …]
|
D | cvcalccontrasthistogram.cpp | 46 CvHistogram* hist, int dont_clear )) 50 CvHistogram* hist, int dont_clear )) 63 CvHistogram* hist, int dont_clear ) 176 CvSize size, CvHistogram * hist, int dont_clear ) 328 cvCalcContrastHist( IplImage ** img, CvHistogram * hist, int dont_clear, IplImage * mask )
|
D | cvthresh.cpp | 197 icvGetThreshVal_Otsu( const CvHistogram* hist ) in icvGetThreshVal_Otsu() 299 CvHistogram* hist = 0; in cvThreshold()
|
D | cvpgh.cpp | 334 cvCalcPGH( const CvSeq * contour, CvHistogram * hist ) in cvCalcPGH()
|
D | cvmotempl.cpp | 288 CvHistogram* hist = 0; in cvCalcGlobalOrientation()
|
/external/opencv/cv/include/ |
D | cv.h | 779 CVAPI(void) cvCalcPGH( const CvSeq* contour, CvHistogram* hist ); in LOAD_CHDL() 824 CVAPI(CvHistogram*) cvCreateHist( int dims, int* sizes, int type, in LOAD_CHDL() 829 CVAPI(void) cvSetHistBinRanges( CvHistogram* hist, float** ranges, in LOAD_CHDL() 833 CVAPI(CvHistogram*) cvMakeHistHeaderForArray( in LOAD_CHDL() 834 int dims, int* sizes, CvHistogram* hist, in LOAD_CHDL() 839 CVAPI(void) cvReleaseHist( CvHistogram** hist ); in LOAD_CHDL() 842 CVAPI(void) cvClearHist( CvHistogram* hist ); in LOAD_CHDL() 845 CVAPI(void) cvGetMinMaxHistValue( const CvHistogram* hist, in LOAD_CHDL() 853 CVAPI(void) cvNormalizeHist( CvHistogram* hist, double factor ); in LOAD_CHDL() 857 CVAPI(void) cvThreshHist( CvHistogram* hist, double threshold ); in LOAD_CHDL() [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | histogram.cpp | 2593 CvHistogram * 2596 CvHistogram *hist = 0; in cvCreateHist() 2604 hist = (CvHistogram *)cvAlloc( sizeof( CvHistogram )); in cvCreateHist() 2628 CV_IMPL CvHistogram* 2629 cvMakeHistHeaderForArray( int dims, int *sizes, CvHistogram *hist, in cvMakeHistHeaderForArray() 2655 cvReleaseHist( CvHistogram **hist ) in cvReleaseHist() 2662 CvHistogram* temp = *hist; in cvReleaseHist() 2683 cvClearHist( CvHistogram *hist ) in cvClearHist() 2693 cvThreshHist( CvHistogram* hist, double thresh ) in cvThreshHist() 2723 cvNormalizeHist( CvHistogram* hist, double factor ) in cvNormalizeHist() [all …]
|
/external/opencv/cvaux/include/ |
D | cvaux.hpp | 122 CvHistogram* m_hist;
|
/external/opencv3/modules/imgproc/test/ |
D | test_histograms.cpp | 83 vector<CvHistogram*> hist; 1214 cvTsCalcHist( IplImage** _images, CvHistogram* hist, IplImage* _mask, int* channels ) in cvTsCalcHist() 1447 cvTsCalcBackProject( IplImage** images, IplImage* dst, CvHistogram* hist, int* channels ) in cvTsCalcBackProject() 1676 CvHistogram* hist, int method, in cvTsCalcBackProjectPatch() 1679 CvHistogram* model = 0; in cvTsCalcBackProjectPatch()
|
/external/opencv/cxcore/include/ |
D | cxtypes.h | 809 typedef struct CvHistogram struct 817 CvHistogram; argument 821 (((CvHistogram*)(hist))->type & CV_MAGIC_MASK) == CV_HIST_MAGIC_VAL && \
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | types_c.h | 748 typedef struct CvHistogram struct 756 CvHistogram; argument 760 (((CvHistogram*)(hist))->type & CV_MAGIC_MASK) == CV_HIST_MAGIC_VAL && \
|