diff options
author | Thomas White <taw@physics.org> | 2013-03-11 12:08:11 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-03-11 12:08:55 +0100 |
commit | 26b9d5227a96e5f5a607df98622df83f0f944bcc (patch) | |
tree | 9e0641293c7073c69002baaff490e0f1cf67aae6 /src/dw-hdfsee.h | |
parent | dcfeca3dc9a38873de0d39cfcef4a80b26974352 (diff) |
hdfsee: Add --median-filter, and make --filter-cm and --filter-noise actually work
Diffstat (limited to 'src/dw-hdfsee.h')
-rw-r--r-- | src/dw-hdfsee.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dw-hdfsee.h b/src/dw-hdfsee.h index 84095a41..6bc2ae12 100644 --- a/src/dw-hdfsee.h +++ b/src/dw-hdfsee.h @@ -102,6 +102,7 @@ typedef struct { double boostint; int cmfilter; /* Use CM subtraction */ int noisefilter; /* Use aggressive noise filter */ + int median_filter; int use_geom; int show_rings; int show_peaks; @@ -122,7 +123,8 @@ extern DisplayWindow *displaywindow_open(const char *filename, int noisefilter, int colscale, const char *element, const char *geometry, int show_rings, - double *ring_radii, int n_rings, double ring_size); + double *ring_radii, int n_rings, + double ring_size, int median_filter); #endif /* DISPLAYWINDOW_H */ |