Chan-Vese Segmentation
num.h
Go to the documentation of this file.
1 
17 #ifndef _NUM_H_
18 #define _NUM_H_
19 
20 #ifdef NUM_SINGLE
21 /* Use single-precision datatype */
22 typedef float num;
23 #else
24 /* Use double-precision datatype */
25 typedef double num;
26 #endif
27 
28 #endif /* _NUM_H_ */