Changeset 2657


Ignore:
Timestamp:
08/03/08 13:48:16 (5 years ago)
Author:
sam
Message:
  • edd.c: output MSD instead of RMSD in the displacement computation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/examples/edd.c

    r2656 r2657  
    5858    /* Compute the standard error */ 
    5959    tmp = pipi_gaussian_blur(dither, sigma); 
    60     e0 = pipi_measure_rmsd(gauss, tmp); 
     60    e0 = pipi_measure_msd(gauss, tmp); 
    6161    pipi_free(tmp); 
    6262 
    6363    /* Compute the fast error */ 
    6464    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); 
    6666    pipi_free(tmp); 
    6767 
     
    7575                                             fx + step * dx / Z, 
    7676                                             fy + step * dy / Z); 
    77                 e = pipi_measure_rmsd(gauss, tmp); 
     77                e = pipi_measure_msd(gauss, tmp); 
    7878                pipi_free(tmp); 
    7979                if(e < best) 
Note: See TracChangeset for help on using the changeset viewer.