/* * itrans-threshold.h * * Threshold and adaptive threshold peak searches * * (c) 2007 Thomas White * * dtr - Diffraction Tomography Reconstruction * */ #ifndef ITRANS_THRESHOLD_H #define ITRANS_THRESHOLD_H #ifdef HAVE_CONFIG_H #include #endif #include #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 */