aboutsummaryrefslogtreecommitdiff
path: root/src/itrans-threshold.h
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-03-31 12:50:00 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-03-31 12:50:00 +0000
commit3bc91ef5e88444cbd9366f0b1516a91af6313e8d (patch)
tree4cd3fa16fe8cc241cd37c46d2c69d556c9b5825d /src/itrans-threshold.h
parent8810e9ff13e9fb0db420dbdc529ef2f9dfe89d7c (diff)
Tidy up itrans framework: move each peak detection algorithm to its own file
Fit svn::ignore properties (again?) git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@16 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/itrans-threshold.h')
-rw-r--r--src/itrans-threshold.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/itrans-threshold.h b/src/itrans-threshold.h
new file mode 100644
index 0000000..32c3faf
--- /dev/null
+++ b/src/itrans-threshold.h
@@ -0,0 +1,27 @@
+/*
+ * itrans-threshold.h
+ *
+ * Threshold and adaptive threshold peak searches
+ *
+ * (c) 2007 Thomas White <taw27@cam.ac.uk>
+ *
+ * dtr - Diffraction Tomography Reconstruction
+ *
+ */
+
+#ifndef ITRANS_THRESHOLD_H
+#define ITRANS_THRESHOLD_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdint.h>
+
+#include "control.h"
+#include "imagedisplay.h"
+
+extern unsigned int itrans_peaksearch_threshold(int16_t *image, ControlContext *ctx, double tilt_degrees, ImageDisplay *imagedisplay);
+extern unsigned int itrans_peaksearch_adaptive_threshold(int16_t *image, ControlContext *ctx, double tilt_degrees, ImageDisplay *imagedisplay);
+
+#endif /* ITRANS_THRESHOLD_H */