aimstil  5.0.5
read.h
Go to the documentation of this file.
1 #ifndef TIL_READ_H
2 #define TIL_READ_H
3 
4 // includes from TIL
5 #include "til/til_common.h"
6 #include "til/ImageC.h"
7 
8 // Namespace
9 
10 namespace til {
11 
12 TIL_API void readCT(const char *fileName, ImageC<double> &);
13 TIL_API void readCT(const char *fileName, ImageC<float > &);
14 TIL_API void readCT(const char *fileName, ImageC<ushort> &);
15 TIL_API void readCT(const char *fileName, ImageC<uchar > &);
16 
17 TIL_API void readRAW(const char *fileName, ImageC<ushort> &im, int xs, int ys, float vx, float vy, float vz);
18 TIL_API void readRAW(const char *fileName, ImageC<uchar> &im, int xs, int ys, int zs, float vx = 1, float vy = 1, float vz = 1);
19 
20 } // namespace
21 
22 #endif
23 
Belongs to package Box Do not include directly, include til/Box.h instead.
Definition: Accumulator.h:10
General macros, definitions and functions.
#define TIL_API
Definition: til_common.h:42
TIL_API void readRAW(const char *fileName, ImageC< ushort > &im, int xs, int ys, float vx, float vy, float vz)
TIL_API void readCT(const char *fileName, ImageC< double > &)