]> Creatis software - creaImageIO.git/blob - src/creaImageIOImageReader.cpp
c3b9070ff9671f736b69dc1a69637dbbe6f3bcb2
[creaImageIO.git] / src / creaImageIOImageReader.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 <creaImageIOImageReader.h>
30 #include <creaImageIOTreeAttributeDescriptor.h>
31 #include <creaImageIOSystem.h>
32
33 #include <creaImageIOVtkImageReader.h>
34 #if defined (USE_GDCM)
35         #include <creaImageIODicomImageReader.h>
36 #endif
37 #if defined(USE_GDCM2)
38         #include <creaImageIODicomImageReader2.h>
39 #endif
40 #include <creaImageIOUltrasonixImageReader.h>
41 #include <vtkPNGReader.h>
42 #include <vtkTIFFReader.h>
43 #include <vtkJPEGReader.h>
44 #include <vtkBMPReader.h>
45 #include <vtkSLCReader.h>
46 #include <vtkMetaImageReader.h>
47 //#include <vtkGESignalReader.h>
48
49 #include "boost/filesystem/path.hpp"
50
51 namespace creaImageIO
52 {
53
54   //=====================================================================
55   ImageReader::ImageReader()
56     :   
57     mUnreadableImage(NULL),
58     mLastFilename("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&")
59   {
60     //    std::cout << "#### ImageReader::ImageReader()"<<std::endl;
61     if (mUnreadableImage!=NULL) return;
62
63
64         Register( boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkPNGReader::New() , "PNG", ".png")));
65     Register(boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkTIFFReader::New(), "TIFF", ".tiff")));
66     Register(boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkJPEGReader::New(), "JPEG", ".jpeg")));
67     Register(boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkBMPReader::New(), "BMP", ".bmp")));
68     Register(boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkSLCReader::New())));
69     Register(boost::shared_ptr<AbstractImageReader>(new VtkImageReader(vtkMetaImageReader::New(),"MHD",".mhd")));
70     //   Register(new VtkImageReader(vtkGESignalReader::New()));
71     Register(boost::shared_ptr<AbstractImageReader>(new DicomImageReader));
72     Register(boost::shared_ptr<AbstractImageReader>(new UltrasonixImageReader));
73
74         UnRegister(".txt");
75  
76     mUnreadableImage = vtkImageData::New();
77     int dim[3];
78     dim[0] = dim[1] = 128; 
79     dim[2] = 1; 
80     mUnreadableImage->SetDimensions ( dim );
81
82 //EED 2017-01-01 Migration VTK7
83 #if VTK_MAJOR_VERSION <= 5
84     mUnreadableImage->SetScalarTypeToUnsignedChar();
85     mUnreadableImage->AllocateScalars();   
86 #else
87     mUnreadableImage->AllocateScalars(VTK_UNSIGNED_CHAR,1);
88 #endif
89  
90     for (int i=0;i<dim[0];i++) 
91         {
92                 for (int j=0;j<dim[1];j++) 
93                 {
94                         mUnreadableImage->SetScalarComponentFromFloat(i,j,0,0,0);
95                 } // for j
96         } // for i
97         
98     for (int i=0;i<dim[0];i++) 
99     {
100                 mUnreadableImage->SetScalarComponentFromFloat(i,i,0,0,255);
101                 mUnreadableImage->SetScalarComponentFromFloat(dim[0]-1-i,i,0,0,255);
102     } // for i
103   }
104   //=====================================================================
105
106   //=====================================================================
107   ImageReader::~ImageReader()
108   {
109
110  //   for (i=mReader.begin(); i!=mReader.end(); i++)
111  //     {
112         //delete (*i);
113  //     }
114 //    mReader.clear();
115     if (mUnreadableImage!=NULL) 
116     {
117                 mUnreadableImage->Delete();
118                 mUnreadableImage = NULL;
119     }
120   }
121   //=====================================================================
122
123   //=====================================================================
124   void ImageReader::Register(boost::shared_ptr<AbstractImageReader> r)
125   {
126     mReader.push_back(r);
127   }
128
129   void ImageReader::UnRegister(const std::string i_val)
130   {
131     mUnReader.push_back(i_val);
132
133   }
134   //=====================================================================
135
136    //=====================================================================
137   // Returns true iff the file is readable
138   bool ImageReader::ShallNotRead( const std::string& filename ) 
139   {
140     bool ok = true;
141         if(filename != "")
142         {
143                 std::vector<std::string >::iterator i ;
144                 for (i=mUnReader.begin(); i!=mUnReader.end(); i++)
145                 {
146                         if ( (*i).c_str() == filename) 
147                         {
148                                 ok = false;
149                                 break;
150                         }
151                 }
152         }
153         return ok;
154   }
155
156   //=====================================================================
157   // Returns true iff the file is readable
158   bool ImageReader::CanRead( const std::string& filename ) 
159   {
160     bool ok = false;
161
162         if( !ShallNotRead(filename))
163         {
164                 return ok;
165         }
166         if(filename != "")
167         {
168                 std::vector<boost::shared_ptr<AbstractImageReader> >::iterator i;
169                 for (i=mReader.begin(); i!=mReader.end(); i++)
170                 {
171                         ok = (*i)->CanRead(filename);
172                         if (ok) 
173                         {
174                                 mLastFilename = filename;
175                                 mLastReader = *i;
176                                 break;
177                         }
178                 }
179         }
180         return ok;
181   }
182   //=====================================================================
183
184   //=====================================================================
185   // Reads the file (CanRead must be called before : no test here)
186   vtkImageData*  ImageReader::ReadImage( const std::string& filename)
187   {
188                 if (mLastFilename!=filename)
189                 {
190                         if (!CanRead(filename))  
191                         { 
192                                 vtkImageData* im = vtkImageData::New();
193                                 im->ShallowCopy(mUnreadableImage);
194                                 return im;
195                         } // CanRead
196                 } // for mLastFilename
197                 vtkImageData* i = mLastReader->ReadImage(mLastFilename);
198                 if (i==NULL) 
199                 {
200                         i = vtkImageData::New();
201                         i->ShallowCopy(mUnreadableImage);
202                 } // i
203                 return i;
204   }
205   //=====================================================================
206   // Another function to read attributes for a file
207   void ImageReader::getAttributes(const std::string filename,
208                 std::map <std::string , std::string> &infos, std::vector<std::string> i_attr)
209   {
210            if (mLastFilename!=filename)
211       {
212         if (!CanRead(filename)) 
213           { 
214             return;
215           }
216       }
217     mLastReader->getAttributes(filename, infos, i_attr);
218   }
219   //=====================================================================
220    void ImageReader::ReadAttributes(const std::string& filename, 
221                                     std::map<std::string,std::string>& attr)
222    {
223     if (mLastFilename!=filename)
224       {
225         if (!CanRead(filename)) 
226           { 
227             return;
228           }
229       }
230     mLastReader->ReadAttributes(mLastFilename,attr);
231    }
232   //=====================================================================
233
234
235   //=====================================================================
236   /// Pushes back all kwown extensions (without dot) in the vector given
237   void ImageReader::PushBackExtensions(std::vector<std::string>& v)
238   {
239           std::vector<boost::shared_ptr<AbstractImageReader> >::iterator i;
240     for (i=mReader.begin(); i!=mReader.end(); i++)
241       {
242         (*i)->PushBackExtensions(v);
243       }
244   }
245   //=====================================================================
246   
247 } // namespace creaImageIO