package util; import model.ModelConst; import model.color.ColorConst; /** * Various default values for the Front end package * @author John H. Krantz Ph.D. * */ public class Defaults { // Gabor Model Defaults public final static int NUM_ORIENT = 18; public final static double NUM_OR_DBL = NUM_ORIENT; // analysis defaults public final static double STDEV = 2.0; // standard deviation of center of Gabor or Excitatory // area of DOG cells. public final static double INHIB = 6.0; // standard deviation of inhibitory area of DOG cell public final static double PHASE = 0.0; // phase of the Gabor Cell public final static int STEP = 2; // size of steps through image being processed // in pixels // DOG Channel Default public final static int DOG_CHANNEL = ColorConst.BL_WH; // Plotting Defaults public final static int PLOT_CELL = ModelConst.SIMPLE_CELL; public final static int DFLT_ORIENT = 0; // foveal modeling defaults public final static boolean DO_FOVEA = false; public final static double FOVEA_RADIUS = 1.0; // radius of the highest resolution fovea in pixels public final static double ACUITY_SLOPE = 0.02; // the slope for how fast the acuity deteriorates //in the periphery. Unites are SD/Pixels from fovea // jitter defaults public final static int NUM_JITTER = 10; // correlation defaults public final static String LABEL1 = "Dog Output"; public final static String LABEL2 = "Gabor Mean Output"; // default draw image sizes public final static int IMAGE_SIZE = 350; }