Searched refs:GLCM (Results 1 - 2 of 2) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvtexture.cpp44 Calculation of a texture descriptors from GLCM (Grey Level Co-occurrence Matrix'es)
219 cvReleaseGLCM( CvGLCM** GLCM, int flag ) argument
227 if( !GLCM )
230 if( *GLCM )
233 if( (flag == CV_GLCM_GLCM || flag == CV_GLCM_ALL) && (*GLCM)->matrices )
235 for( matrixLoop = 0; matrixLoop < (*GLCM)->numMatrices; matrixLoop++ )
237 if( (*GLCM)->matrices[ matrixLoop ] )
239 cvFree( (*GLCM)->matrices[matrixLoop] );
240 cvFree( (*GLCM)->matrices + matrixLoop );
244 cvFree( &((*GLCM)
532 cvGetGLCMDescriptor( CvGLCM* GLCM, int step, int descriptor ) argument
561 cvGetGLCMDescriptorStatistics( CvGLCM* GLCM, int descriptor, double* _average, double* _standardDeviation ) argument
608 cvCreateGLCMImage( CvGLCM* GLCM, int step ) argument
[all...]
/external/opencv/cvaux/include/
H A Dcvaux.h801 CVAPI(void) cvReleaseGLCM( CvGLCM** GLCM, int flag CV_DEFAULT(CV_GLCM_ALL));
807 CVAPI(double) cvGetGLCMDescriptor( CvGLCM* GLCM, int step, int descriptor );
809 CVAPI(void) cvGetGLCMDescriptorStatistics( CvGLCM* GLCM, int descriptor,
812 CVAPI(IplImage*) cvCreateGLCMImage( CvGLCM* GLCM, int step );

Completed in 81 milliseconds