blob: cc4c4b5d26d4a162199a6c72d5120479627d5852 (
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
25
|
/*
* prealign.h
*
* Rough initial alignment of images
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef PREALIGN_H
#define PREALIGN_H
#include "control.h"
extern void prealign_do_series(ControlContext *ctx);
extern void prealign_sum_stack(ControlContext *ctx);
#endif /* PREALIGN_H */
|