Home
last modified time | relevance | path

Searched refs:accumFocus (Results 1 – 1 of 1) sorted by relevance

/dports/graphics/libpano13/libpano13-2.9.20/
H A DZComb.c44 float *accumFocus; // array width*height of estimated focus accumulated across all images member
96 if (ZComb.accumFocus != NULL) { in ZCombInitStats()
97 free(ZComb.accumFocus); in ZCombInitStats()
101 ZComb.accumFocus = malloc(width*height*sizeof(float)); in ZCombInitStats()
104 if (ZComb.accumFocus == NULL || ZComb.estFocus == NULL || ZComb.bestLevel == NULL) { in ZCombInitStats()
111 ZComb.accumFocus[row*width+col] = 0.0; in ZCombInitStats()
127 if (ZComb.accumFocus[row*width+col] < ZComb.estFocus[row*width+col] - VARIANCEFUDGE) { in ZCombAccumEstFocus()
128 ZComb.accumFocus[row*width+col] = ZComb.estFocus[row*width+col]; in ZCombAccumEstFocus()