aboutsummaryrefslogtreecommitdiff
path: root/src/displaywindow.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-03-18 11:05:41 +0100
committerThomas White <taw@physics.org>2010-03-18 11:05:41 +0100
commit88c08418710ab2c72d51f6fce13ad2d78e0706f6 (patch)
treea6e7451341a1bda9307c1c71eb77a1cae898699f /src/displaywindow.h
parent7678f34afc9df872af539d56c8110e578e683b08 (diff)
Separate CM subtraction and noise filter
Diffstat (limited to 'src/displaywindow.h')
-rw-r--r--src/displaywindow.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/displaywindow.h b/src/displaywindow.h
index 0ca59933..ee34dab9 100644
--- a/src/displaywindow.h
+++ b/src/displaywindow.h
@@ -63,7 +63,8 @@ typedef struct {
int height; /* Size of the drawing area */
int binning;
int boostint;
- int clean; /* Whether or not to clean the image */
+ int cmfilter; /* Use CM subtraction */
+ int noisefilter; /* Use aggressive noise filter */
int show_col_scale;
int scale;
@@ -74,7 +75,8 @@ typedef struct {
/* Open an image display window showing the given filename, or NULL */
extern DisplayWindow *displaywindow_open(const char *filename,
const char *peaks, int boost,
- int binning, int clean);
+ int binning, int cmfilter,
+ int noisefilter);
#endif /* DISPLAYWINDOW_H */