Mercurial > hg > wm
comparison Meerwald/wm_corvi_d.c @ 3:acb6967ee76d
update to 0.5
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Tue, 14 Aug 2007 21:11:21 +0200 |
parents | be303a3f5ea8 |
children | f83ef905a63d |
comparison
equal
deleted
inserted
replaced
2:b92f06d9a967 | 3:acb6967ee76d |
---|---|
38 int n = 0; | 38 int n = 0; |
39 int method = -1; | 39 int method = -1; |
40 int filter = 0; | 40 int filter = 0; |
41 char filter_name[MAXPATHLEN] = ""; | 41 char filter_name[MAXPATHLEN] = ""; |
42 | 42 |
43 int level; | 43 int level = 0; |
44 double alpha = 0.0; | 44 double alpha = 0.0; |
45 | 45 |
46 int in_rows, in_cols, in_format; | 46 int in_rows, in_cols, in_format; |
47 gray in_maxval; | 47 gray in_maxval; |
48 int orig_rows, orig_cols, orig_format; | 48 int orig_rows, orig_cols, orig_format; |
219 fprintf(stderr, "%s: extracting from coarse image (x %d/y %d) at level %d\n", progname, col, row, level); | 219 fprintf(stderr, "%s: extracting from coarse image (x %d/y %d) at level %d\n", progname, col, row, level); |
220 } | 220 } |
221 | 221 |
222 init_dwt(cols, rows, filter_name, filter, level, method); | 222 init_dwt(cols, rows, filter_name, filter, level, method); |
223 #ifdef POLLEN_STUFF | 223 #ifdef POLLEN_STUFF |
224 #include "pollen_stuff.xxx" | 224 #include "pollen_stuff.c" |
225 #endif | 225 #endif |
226 #ifdef PARAM_STUFF | 226 #ifdef PARAM_STUFF |
227 #include "param_stuff.xxx" | 227 #include "param_stuff.c" |
228 #endif | 228 #endif |
229 | 229 |
230 input_dwts = fdwt(input_image); | 230 input_dwts = fdwt(input_image); |
231 orig_dwts = fdwt(orig_image); | 231 orig_dwts = fdwt(orig_image); |
232 | 232 |