/usr/include/CGAL/ImageIO/gis.h is in libcgal-dev 4.11-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | // Copyright (c) 2005-2008 ASCLEPIOS Project, INRIA Sophia-Antipolis (France)
// All rights reserved.
//
// This file is part of the ImageIO Library, and as been adapted for
// CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the
// GNU Lesser General Public License as published by the Free Software Foundation;
// either version 3 of the License, or (at your option) any later version.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// These files are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL$
// $Id$
//
//
// Author(s) : ASCLEPIOS Project (INRIA Sophia-Antipolis), Laurent Rineau
#ifndef GIS_H
#define GIS_H
#include <CGAL/ImageIO.h>
/* read gis format header
Format du fichier texte associe aux fichiers binaires (images)
exemple :
512 512 100 2
-type U16
-dx 1.
-dy 2.
-dz .5
-z2 5
-ar SUN
-mod MR
-txt image acquise sur SIGNA 1.5T au CHRU de Caen
donnees brutes sans traitement -endtxt
- la première ligne comporte les dimensions de l'image, respectivement, le nombre de colonnes, de lignes, de coupes et de temps; ces deux, trois ou quatre entiers doivent être strictement positifs et rester inférieurs à 4096.
- les lignes suivantes comportent des champs indiques par des mots clefs:
-type typespecifier
U8 entier non signé codé sur 8 bit (unsigned char)
S8 entier signé codé sur 8 bit (signed char)
U16 entier non signé codé sur 16 bit (unsigned short)
S16 entier signé codé sur 16 bit (signed short)
U32 entier non signé codé sur 32 bit (unsigned int)
S32 entier signé codé sur 32 bit (signed int)
FLOAT flottant simple précision (float)
DOUBLE flottant double précision (double)
-dx double (taille du voxel en x)
-dy double (taille du voxel en y)
-dz double (taille du voxel en z)
(les tailles sont donnees en millimetres)
-dt double (taille du voxel en t)
(taille donnee en secondes)
(spécification d'un sous-volume)
-x1 entier
-x2 entier
-y1 entier
-y2 entier
-z1 entier
-z2 entier
-ref nom x y z t
(origine d'un sous-volume : fichier correspondant a une
sous-image de "nom")
-ar architecture (string)
-mod modalite (string) : MR, PET, fMR, etc.
-dir plan de coupe (string) : sagittal, frontal, axial
-min double (valeur physique correspondant au minimum des voxels)
-max double (valeur physique correspondant au maximum des voxels)
-ca x y z (3 entiers pour la position de CA)
-cp x y z (3 entiers pour la position de CP)
-ip a b c d (4 double pour les coefficients du plan inter-hemispherique
equation de la forme ax+by+cz+d = 0)
-td d1 d2 d3 d4 d5 d6 (6 entiers pour les distances au repere de
Talairach, en voxels :
d1 : Talairach anterior plane-CA distance
d2 : Talairach posterior plane-CP distance
d3 : Talairach left plane-IP distance
d4 : Talairach right plane-IP distance
d5 : Talairach bottom plane-CACP distance
d6 : Talairach top plane-CACP distance
-a age (entier)
-s sexe (1/2)
-l lateralite
-txt texte libre (ascii)
-endtxt (fin du texte)
return:
-1: error
0: success
*/
int readGisHeader(const char* name,_image *im);
int testGisHeader(char *magic,const char *name);
/** creates an return the file format structure associated with the Gis file format */
PTRIMAGE_FORMAT createGisFormat();
/*
return:
-1: error
1: success
*/
int writeGis( char *basename, _image* im ) ;
/*
return:
false: error
true: success
*/
bool writeGisHeader( const _image* im ) ;
/*
return:
-1: error
1: success
*/
int writeGisData( const _image* im ) ;
#ifdef CGAL_HEADER_ONLY
#include <CGAL/ImageIO/gis_impl.h>
#endif // CGAL_HEADER_ONLY
#endif
|