Changeset 2657
- Timestamp:
- Aug 3, 2008, 1:48:16 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/examples/edd.c
r2656 r2657 58 58 /* Compute the standard error */ 59 59 tmp = pipi_gaussian_blur(dither, sigma); 60 e0 = pipi_measure_ rmsd(gauss, tmp);60 e0 = pipi_measure_msd(gauss, tmp); 61 61 pipi_free(tmp); 62 62 63 63 /* Compute the fast error */ 64 64 tmp = pipi_gaussian_blur_ext(dither, sigma, sigma, 0.16, 0.26); 65 e1 = pipi_measure_ rmsd(gauss, tmp);65 e1 = pipi_measure_msd(gauss, tmp); 66 66 pipi_free(tmp); 67 67 … … 75 75 fx + step * dx / Z, 76 76 fy + step * dy / Z); 77 e = pipi_measure_ rmsd(gauss, tmp);77 e = pipi_measure_msd(gauss, tmp); 78 78 pipi_free(tmp); 79 79 if(e < best)
Note: See TracChangeset
for help on using the changeset viewer.