/vol/vipdata/irtk/image++/include/irtkGIPL.h

00001 /*=========================================================================
00002 
00003   Library   : Image Registration Toolkit (IRTK)
00004   Module    : $Id: irtkGIPL.h 2 2008-12-23 12:40:14Z dr $
00005   Copyright : Imperial College, Department of Computing
00006               Visual Information Processing (VIP), 2008 onwards
00007   Date      : $Date: 2008-12-23 12:40:14 +0000 (Tue, 23 Dec 2008) $
00008   Version   : $Revision: 2 $
00009   Changes   : $Author: dr $
00010 
00011 =========================================================================*/
00012 
00013 #ifndef _IRTKGIPL_H
00014 
00015 // GIPL magic number
00016 #define GIPL_MAGIC1         719555000u
00017 #define GIPL_MAGIC2        4026526128u
00018 #define GIPL_MAGIC_EXT            815u
00019 
00020 // GIPL header size
00021 #define GIPL_HEADERSIZE   256
00022 
00023 // GIPL filter types
00024 #define GIPL_BINARY       1
00025 #define GIPL_CHAR         7
00026 #define GIPL_U_CHAR       8
00027 #define GIPL_SHORT        15
00028 #define GIPL_U_SHORT      16
00029 #define GIPL_U_INT        31
00030 #define GIPL_INT          32
00031 #define GIPL_FLOAT        64
00032 #define GIPL_DOUBLE       65
00033 #define GIPL_VECTOR_3D_CHAR   66
00034 #define GIPL_VECTOR_3D_SHORT  67
00035 #define GIPL_VECTOR_3D_FLOAT  68
00036 #define GIPL_VECTOR_3D_DOUBLE 69
00037 #define GIPL_C_SHORT      144
00038 #define GIPL_C_INT        160
00039 #define GIPL_C_FLOAT      192
00040 #define GIPL_C_DOUBLE     193
00041 
00042 #endif