Home | History | Annotate | Download | only in src

Lines Matching defs:energy

58 //               alpha - pointer to coefficient of continuity energy, 
59 // beta - pointer to coefficient of curvature energy,
60 // gamma - pointer to coefficient of image energy,
64 // scheme - image energy scheme
65 // if _CV_SNAKE_IMAGE - image intensity is energy
66 // if _CV_SNAKE_GRAD - magnitude of gradient is energy
216 float energy;
228 Econt[(j + centery) * win.width + k + centerx] = energy =
232 maxEcont = MAX( maxEcont, energy );
233 minEcont = MIN( minEcont, energy );
251 float energy;
268 Ecurv[(j + centery) * win.width + k + centerx] = energy =
270 maxEcurv = MAX( maxEcurv, energy );
271 minEcurv = MIN( minEcurv, energy );
286 float energy;
324 Eimg[(j + centery) * win.width + k + centerx] = energy =
329 Eimg[(j + centery) * win.width + k + centerx] = energy =
333 maxEimg = MAX( maxEimg, energy );
334 minEimg = MIN( minEimg, energy );