aboutsummaryrefslogtreecommitdiff
path: root/src/prealign.c
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-28 12:43:49 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-28 12:43:49 +0000
commit0ef8783c72948f9c8c4af1170ae2d8414a2bd13e (patch)
treee11e80ab4441480c9fb621202b70cc81b11cce32 /src/prealign.c
parent737154b1ef16ef037df988eaa64a5063df1d815c (diff)
Add skeleton prealignment procedure
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@79 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/prealign.c')
-rw-r--r--src/prealign.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/prealign.c b/src/prealign.c
new file mode 100644
index 0000000..86c0089
--- /dev/null
+++ b/src/prealign.c
@@ -0,0 +1,26 @@
+/*
+ * prealign.c
+ *
+ * Rough initial alignment of images
+ *
+ * (c) 2007 Thomas White <taw27@cam.ac.uk>
+ *
+ * dtr - Diffraction Tomography Reconstruction
+ *
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "control.h"
+
+/* No peak-detection nor 3D mapping has been done yet.
+ Ask the user to give a rough idea (i.e. as accurately as possible...)
+ of the centre of each image. */
+void prealign_do_series(ControlContext *ctx) {
+
+
+
+}
+