Home | History | Annotate | Download | only in simplecamera

Lines Matching refs:DECAY

62     private static final float DECAY = 0.03f;
142 else scoreMean = scoreMean * (1 - DECAY) + score * DECAY;
145 else motionMean = motionMean * (1 - DECAY) + vectorAccel * DECAY;
267 sharpnessMean = sharpnessMean * (1 - DECAY) + sharpness * DECAY;
268 sharpnessVar = sharpnessVar * (1 - DECAY) + (sharpness - sharpnessMean) *
269 (sharpness - sharpnessMean) * DECAY;
292 underExposureMean = underExposureMean * (1 - DECAY) + underExposure * DECAY;
293 underExposureVar = underExposureVar * (1 - DECAY) + (underExposure - underExposureMean)
294 * (underExposure - underExposureMean) * DECAY;
317 overExposureMean = overExposureMean * (1 - DECAY) + overExposure * DECAY;
318 overExposureVar = overExposureVar * (1 - DECAY) + (overExposure - overExposureMean) *
319 (overExposure - overExposureMean) * DECAY;
342 contrastMean = contrastMean * (1 - DECAY) + contrast * DECAY;
343 contrastVar = contrastVar * (1 - DECAY) + (contrast - contrastMean) *
344 (contrast - contrastMean) * DECAY;
367 colorfulnessMean = colorfulnessMean * (1 - DECAY) + colorfulness * DECAY;
368 colorfulnessVar = colorfulnessVar * (1 - DECAY) + (colorfulness - colorfulnessMean) *
369 (colorfulness - colorfulnessMean) * DECAY;
392 brightnessMean = brightnessMean * (1 - DECAY) + brightness * DECAY;
393 brightnessVar = brightnessVar * (1 - DECAY) + (brightness - brightnessMean) *
394 (brightness - brightnessMean) * DECAY;