Home | History | Annotate | Download | only in src

Lines Matching defs:entryValue

446             double entryValue = matrix[ sideLoop1 ][ sideLoop2 ];
452 marginalProbability[ sideLoop1 ] += entryValue;
453 correlationMean += actualSideLoop1*entryValue;
455 maximumProbability = MAX( maximumProbability, entryValue );
459 entryValue;
462 descriptors[ CV_GLCMDESC_HOMOGENITY ] += entryValue / ( 1.0 + sideLoopDifferenceSquared );
464 if( entryValue > 0 )
466 descriptors[ CV_GLCMDESC_ENTROPY ] += entryValue * log( entryValue );
469 descriptors[ CV_GLCMDESC_ENERGY ] += entryValue*entryValue;
493 double entryValue = matrix[ sideLoop1 ][ sideLoop2 ];
495 sideEntryValueSum += entryValue;
499 correlationProductTerm += (actualSideLoop1 - correlationMean) * (actualSideLoop2 - correlationMean) * entryValue;
503 descriptors[ CV_GLCMDESC_CLUSTERTENDENCY ] += clusterTerm * clusterTerm * entryValue;
504 descriptors[ CV_GLCMDESC_CLUSTERSHADE ] += clusterTerm * clusterTerm * clusterTerm * entryValue;
510 HXY1 += entryValue * HXYValueLog;