blob: f475a2c652f8e6119069e331fc3303e3732090ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* itrans-stat.h
*
* Peak detection by iterative statistical analysis and processing
*
* (c) 2007 Gordon Ball <gfb21@cam.ac.uk>
* Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifndef ITRANS_STAT_H
#define ITRANS_STAT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "control.h"
unsigned int itrans_peaksearch_stat(ImageRecord *imagerecord, ControlContext *ctx);
#endif /* ITRANS_STAT_H */
|