Mercurial > hg > wm
comparison Fotopoulos/cast-sub.c @ 13:cbecc570129d
cleanup warnings
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Mon, 30 Jun 2008 15:43:16 +0200 |
parents | be303a3f5ea8 |
children |
comparison
equal
deleted
inserted
replaced
12:6f5fea21a43c | 13:cbecc570129d |
---|---|
18 #include <string.h> | 18 #include <string.h> |
19 #include <math.h> | 19 #include <math.h> |
20 #include <float.h> | 20 #include <float.h> |
21 #include <getopt.h> | 21 #include <getopt.h> |
22 #include "common.h" | 22 #include "common.h" |
23 #include "pgm.h" | |
23 | 24 |
24 void add_hor_add_ver(double **in, int N, double **out); | 25 void add_hor_add_ver(double **in, int N, double **out); |
25 void add_hor_sub_ver(double **in, int N, double **out); | 26 void add_hor_sub_ver(double **in, int N, double **out); |
26 void sub_hor_add_ver(double **in, int N, double **out); | 27 void sub_hor_add_ver(double **in, int N, double **out); |
27 void sub_hor_sub_ver(double **in, int N, double **out); | 28 void sub_hor_sub_ver(double **in, int N, double **out); |
238 matrix_d2i(o, image_i, N); | 239 matrix_d2i(o, image_i, N); |
239 save_image(image_i, out, width, height); | 240 save_image(image_i, out, width, height); |
240 | 241 |
241 fclose(in); | 242 fclose(in); |
242 fclose(out); | 243 fclose(out); |
243 } | 244 |
244 | 245 exit(EXIT_SUCCESS); |
245 | 246 } |
246 | 247 |
247 | 248 |
249 | |
250 |