--- ../../dev3/gift/FeatureExtraction/gabor.c 2006-11-15 07:52:32.000000000 -0600 +++ FeatureExtraction/gabor.c 2006-11-15 07:55:50.000000000 -0600 @@ -54,8 +54,8 @@ void create_filter_kernels(double ** kernelsxy) { - uint32_t i, j; - int32_t x, x_c; /* ints to force type promotion later */ + uint_fast32_t i, j; + int_fast32_t x, x_c; /* ints to force type promotion later */ double u0, u, v, sigma, theta; /* set the values of the kernels */ @@ -86,8 +86,8 @@ /* conv and conv2 are just temporary space, for juggling image data between filters */ void gabor_filter(double *image, int width, int height, int filter_scale, int orientation, double **kernelsxy, double *conv, double *conv2, double *output) { - uint32_t x, y; - uint32_t k; + uint_fast32_t x, y; + uint_fast32_t k; double * target_kernal; double * target_conv; double * target_image;