Lines Matching refs:numMatrices
59 int numMatrices; member
141 newGLCM->numMatrices = numStepDirections; in cvCreateGLCM()
235 for( matrixLoop = 0; matrixLoop < (*GLCM)->numMatrices; matrixLoop++ ) in cvReleaseGLCM()
249 for( matrixLoop = 0; matrixLoop < (*GLCM)->numMatrices; matrixLoop++ ) in cvReleaseGLCM()
387 cvAlloc( destGLCM->numMatrices*sizeof(destGLCM->descriptors[0]))); in cvCreateGLCMDescriptors()
389 for( matrixLoop = 0; matrixLoop < destGLCM->numMatrices; matrixLoop ++ ) in cvCreateGLCMDescriptors()
546 if( (unsigned)step >= (unsigned)(GLCM->numMatrices)) in cvGetGLCMDescriptor()
574 int matrixLoop, numMatrices; in cvGetGLCMDescriptorStatistics() local
586 numMatrices = GLCM->numMatrices; in cvGetGLCMDescriptorStatistics()
588 for( matrixLoop = 0; matrixLoop < numMatrices; matrixLoop++ ) in cvGetGLCMDescriptorStatistics()
595 average /= numMatrices; in cvGetGLCMDescriptorStatistics()
601 *_standardDeviation = sqrt( (squareSum - average*average*numMatrices)/(numMatrices-1)); in cvGetGLCMDescriptorStatistics()
625 if( (unsigned)step >= (unsigned)(GLCM->numMatrices) ) in cvCreateGLCMImage()