]> Creatis software - creaImageIO.git/blob - src/creaImageIOVtkImageReader.cpp
Bug #1963
[creaImageIO.git] / src / creaImageIOVtkImageReader.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
26 */
27
28
29 #include <creaImageIOVtkImageReader.h>
30 #include <vtkImageReader2.h>
31
32 #include "boost/filesystem/path.hpp"
33 #if defined(_WIN32)
34 #pragma warning(disable: 4996)
35 #endif
36
37 namespace creaImageIO{
38   //=====================================================================
39   VtkImageReader::VtkImageReader(vtkImageReader2* r, 
40                                        const std::string& name,
41                                        const std::string& extensions)
42     : mReader(r), mExtensions(extensions)
43   {
44           
45         //EED 21 mars 2012  FLIP probleme  ..PLOP..
46         mReader->FileLowerLeftOn();
47           
48     if (name.size() == 0) 
49       {
50                   const char *test =mReader->GetDescriptiveName();
51                   //warning: comparison with string literal results in unspecified behaviour
52                   //if(test != "")
53                   std::string emptyString("");
54                   if(test != emptyString)
55                   {
56                         SetName ( "toto");// mReader->GetDescriptiveName());
57                   }
58       }
59     else 
60       {
61         SetName ( name );
62       }
63
64       
65   }
66   //=====================================================================
67   
68   //=====================================================================
69   VtkImageReader::~VtkImageReader()
70   {
71
72     mReader->Delete();
73   }
74   //=====================================================================
75
76   //=====================================================================
77   bool VtkImageReader::CanRead(const std::string& filename)
78   { 
79
80     return (mReader->CanReadFile(filename.c_str())!=0);
81 /*        if(filename != "")
82           {
83                 return (mReader->CanReadFile(filename.c_str())!=0);
84           }
85           else
86           {
87                   return false;
88           }*/
89   }
90   //=====================================================================
91   void VtkImageReader::getAttributes(const std::string filename,
92                 std::map <std::string , std::string> &infos, std::vector<std::string> i_attr)
93    {
94    }
95   //=====================================================================
96   vtkImageData* VtkImageReader::ReadImage(const std::string& filename)
97   {
98     vtkImageData* im = 0;
99     try
100       {
101         mReader->SetFileName(filename.c_str());
102         mReader->Update();
103         im = vtkImageData::New();
104         im->ShallowCopy(mReader->GetOutput());
105       }
106     catch (...)
107       {
108         if (im!=0) im->Delete();
109         im = 0;
110       }
111     return im;
112   }
113   //=====================================================================
114   
115   //=====================================================================
116   void SplitExtensionsString ( const std::string& str, 
117                                const std::string& delimiters, 
118                                std::vector<std::string>& tokens)
119   {
120     // Skip delimiters at beginning.
121     std::string::size_type lastPos = str.find_first_not_of(delimiters, 0);
122     // Find first delimiter.
123     std::string::size_type pos     = str.find_first_of(delimiters, lastPos);
124     
125     while (std::string::npos != pos || std::string::npos != lastPos)
126       {
127         // Found a token, add it to the vector.
128         // SPECIFIC : REMOVE INITIAL DOT (lastPos + 1)
129         tokens.push_back(str.substr(lastPos+1, pos - lastPos));
130         // Skip delimiters.  Note the "not_of"
131         lastPos = str.find_first_not_of(delimiters, pos);
132         // Find next delimiter
133         pos = str.find_first_of(delimiters, lastPos);
134       }
135     
136     }
137   //=====================================================================
138   
139   //=====================================================================
140   void VtkImageReader::PushBackExtensions(std::vector<std::string>& v)
141   {
142     std::string ext = mExtensions;
143     if (ext.size()==0) ext = mReader->GetFileExtensions ();
144     
145     SplitExtensionsString(ext," ",v);
146   }
147   //=====================================================================
148  
149
150
151   //=====================================================================
152   void VtkImageReader::ReadAttributes(const std::string& filename, 
153                                       std::map<std::string,std::string>& attr)
154   {
155
156     // Get image dimensions
157     // How to get the image info without loading it in vtk ?
158     mReader->SetFileName(filename.c_str());
159     mReader->Update(); //OpenFile();
160     int ext[6];
161     mReader->GetDataExtent(ext);
162     // Columns
163     char cols[128];
164     sprintf(cols,"%i",ext[1]-ext[0]);
165     // Rows
166     char rows[128];
167     sprintf(rows,"%i",ext[3]-ext[2]);
168     // Planes 
169     char planes[128];
170     sprintf(planes,"%i",ext[5]-ext[4]);
171    
172         std::map<std::string,std::string>::iterator i;
173     if ( (i = attr.find("FullFileName")) != attr.end())
174       {
175         i->second = filename;
176       }
177     if ( (i = attr.find("D0004_1500")) != attr.end())
178       {
179         boost::filesystem::path full_path(filename);
180         std::string f = full_path.leaf().string();
181         i->second = f;
182       }
183     if ( (i = attr.find("D0028_0010")) != attr.end())
184       {
185         i->second = rows;
186       }
187     if ( (i = attr.find("D0028_0011")) != attr.end())
188       {
189         i->second = cols;
190       }
191     
192     if ( (i = attr.find("D0028_0012")) != attr.end())
193       {
194                 i->second = planes;
195       }
196           if ( (i = attr.find("FullFileDirectory")) != attr.end())
197       {
198          std::string::size_type last_pos = filename.find_last_of("//");
199                  i->second = filename.substr(0, last_pos);
200           }
201
202
203   }
204   //=====================================================================
205
206 } // namespace creaImageIO