aboutsummaryrefslogtreecommitdiff
path: root/src/hdf5-file.h
blob: c288d4cdf5b72e4e862f410bc6463d2403ac1a0c (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
26
/*
 * hdf5.h
 *
 * Read/write HDF5 data files
 *
 * (c) 2006-2009 Thomas White <thomas.white@desy.de>
 *
 * template_index - Indexing diffraction patterns by template matching
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef HDF5_H
#define HDF5_H

#include <stdint.h>

extern int hdf5_write(const char *filename, const uint16_t *data,
                      int width, int height);

extern int hdf5_read(struct image *image, const char *filename);

#endif	/* HDF5_H */