aimsdata  5.0.5
Neuroimaging data handling
baseFormats_volume.h
Go to the documentation of this file.
1 /* This software and supporting documentation are distributed by
2  * Institut Federatif de Recherche 49
3  * CEA/NeuroSpin, Batiment 145,
4  * 91191 Gif-sur-Yvette cedex
5  * France
6  *
7  * This software is governed by the CeCILL-B license under
8  * French law and abiding by the rules of distribution of free software.
9  * You can use, modify and/or redistribute the software under the
10  * terms of the CeCILL-B license as circulated by CEA, CNRS
11  * and INRIA at the following URL "http://www.cecill.info".
12  *
13  * As a counterpart to the access to the source code and rights to copy,
14  * modify and redistribute granted by the license, users are provided only
15  * with a limited warranty and the software's author, the holder of the
16  * economic rights, and the successive licensors have only limited
17  * liability.
18  *
19  * In this respect, the user's attention is drawn to the risks associated
20  * with loading, using, modifying and/or developing or reproducing the
21  * software by the user in light of its specific status of free software,
22  * that may mean that it is complicated to manipulate, and that also
23  * therefore means that it is reserved for developers and experienced
24  * professionals having in-depth computer knowledge. Users are therefore
25  * encouraged to load and test the software's suitability as regards their
26  * requirements in conditions enabling the security of their systems and/or
27  * data to be ensured and, more generally, to use and operate it in the
28  * same conditions as regards security.
29  *
30  * The fact that you are presently reading this means that you have had
31  * knowledge of the CeCILL-B license and that you accept its terms.
32  */
33 
34 #ifndef AIMS_IO_BASEFORMATS_VOLUME_H
35 #define AIMS_IO_BASEFORMATS_VOLUME_H
36 
38 #include <aims/io/fileFormat.h>
39 #include <aims/data/data.h>
40 
41 
42 namespace aims
43 {
44 
45  template<class T>
46  class SpmFormat : public FileFormat<AimsData<T> >
47  {
48  public:
49  virtual ~SpmFormat();
50 
51  virtual bool read( const std::string & filename, AimsData<T> & vol,
52  const carto::AllocatorContext & context,
53  carto::Object options );
54  virtual bool write( const std::string & filename, const AimsData<T> & vol,
55  carto::Object options = carto::none() );
56  };
57 
58  template<class T>
59  class GenesisFormat : public FileFormat<AimsData<T> >
60  {
61  public:
62  virtual ~GenesisFormat();
63 
64  virtual bool read( const std::string & filename, AimsData<T> & vol,
65  const carto::AllocatorContext & context,
66  carto::Object options );
67  };
68 
69 
70  template <typename T>
71  class ImasVolFormat : public FileFormat<AimsData<T> >
72  {
73  public:
74  virtual bool read( const std::string & filename, AimsData<T> & obj,
75  const carto::AllocatorContext & context,
76  carto::Object options );
77  virtual bool write( const std::string & filename,
78  const AimsData<T> & obj,
79  carto::Object options = carto::none() );
80  };
81 
82 
83  template <typename T>
84  class SomaIOAimsDataFormat : public FileFormat<AimsData<T> >
85  {
86  public:
87  virtual ~SomaIOAimsDataFormat();
88  virtual bool read( const std::string & filename, AimsData<T> & obj,
89  const carto::AllocatorContext & context,
90  carto::Object options );
91  virtual AimsData<T>* read( const std::string & filename,
92  const carto::AllocatorContext & context,
93  carto::Object options );
94  virtual bool write( const std::string & filename,
95  const AimsData<T> & obj,
96  carto::Object options = carto::none() );
97  };
98 
99 }
100 
101 
102 #endif
The class for EcatSino data write operation.
Definition: border.h:44
virtual bool write(const std::string &filename, const AimsData< T > &vol, carto::Object options=carto::none())
the base class has a default implementation which only returns false so if your new format only suppo...
Object none()
Pointer to an empty aims::StructuringElement.
Low-level object IO format: each specific format has such a reader / writer.
Definition: fileFormat.h:61
virtual bool read(const std::string &filename, AimsData< T > &vol, const carto::AllocatorContext &context, carto::Object options)