Home | History | Annotate | Download | only in src

Lines Matching refs:expLUT

1152     float *expLUT = 0;
1206 CV_CALL( expLUT = (float*)cvAlloc((kExpNumBins+2) * sizeof(expLUT[0])));
1215 expLUT[i] = (float)exp(val * val * gauss_color_coeff);
1216 lastExpVal = expLUT[i];
1219 expLUT[i] = 0.f;
1250 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
1271 float w = space_weight[k]*(expLUT[idx] + alpha*(expLUT[idx+1] - expLUT[idx]));
1289 cvFree( &expLUT );