]> Creatis software - clitk.git/blob - common/vvImageReader.txx
itk4 migration:
[clitk.git] / common / vvImageReader.txx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ===========================================================================**/
18
19 #ifndef VVIMAGEREADER_TXX
20 #define VVIMAGEREADER_TXX
21
22 #include <string>
23 #include <itkImageFileReader.h>
24 #include <itkImageSeriesReader.h>
25 #include <itkImageToVTKImageFilter.h>
26 #include <itkAnalyzeImageIO.h>
27
28 #include <vtkTransform.h>
29
30 #include "clitkCommon.h"
31 #include "clitkConfiguration.h"
32 #include "vvFromITK.h"
33 //----------------------------------------------------------------------------
34 template<unsigned int VImageDimension>
35 void vvImageReader::UpdateWithDim(std::string InputPixelType)
36 {
37   if (mType == VECTORFIELD)
38     UpdateWithDimAndInputPixelType<itk::Vector<float,3>,VImageDimension>();
39   else if (InputPixelType == "short")
40     UpdateWithDimAndInputPixelType<short,VImageDimension>();
41   else if (InputPixelType == "unsigned_short")
42     UpdateWithDimAndInputPixelType<unsigned short,VImageDimension>();
43   else if (InputPixelType == "char")
44     UpdateWithDimAndInputPixelType<char,VImageDimension>();
45   else if (InputPixelType == "unsigned_char")
46     UpdateWithDimAndInputPixelType<unsigned char,VImageDimension>();
47   else if (InputPixelType == "int")
48     UpdateWithDimAndInputPixelType<int,VImageDimension>();
49   else if (InputPixelType == "unsigned_int")
50     UpdateWithDimAndInputPixelType<unsigned int,VImageDimension>();
51   else if (InputPixelType == "double")
52     UpdateWithDimAndInputPixelType<double,VImageDimension>();
53   else if (InputPixelType == "float")
54     UpdateWithDimAndInputPixelType<float,VImageDimension>();
55   else
56     std::cerr << "Error, input pixel type : " << InputPixelType << " unknown !" << std::endl;
57
58   if (CLITK_EXPERIMENTAL && mLastError.size()==0) {
59     //ReadNkiImageTransform();
60     ReadMatImageTransform();
61   }
62 }
63 //----------------------------------------------------------------------------
64
65
66 //----------------------------------------------------------------------------
67 template<class InputPixelType, unsigned int VImageDimension>
68 void vvImageReader::UpdateWithDimAndInputPixelType()
69 {
70   itk::AnalyzeImageIO *analyzeImageIO = NULL;
71
72   if (mType == MERGEDWITHTIME)   // In this case we can load the images
73     // one at the time to avoid excessive
74     // memory use
75   {
76     mImage=vvImage::New();
77
78     for (std::vector<std::string>::const_iterator i=mInputFilenames.begin(); i!=mInputFilenames.end(); i++) {
79       typedef itk::Image< InputPixelType, VImageDimension-1 > InputImageType;
80       typedef itk::ImageFileReader<InputImageType> ReaderType;
81       typename ReaderType::Pointer reader = ReaderType::New();
82       reader->ReleaseDataFlagOn();
83       reader->SetFileName(*i);
84       try {
85         mImage->AddItkImage<InputImageType>(reader->GetOutput());
86       } catch ( itk::ExceptionObject & err ) {
87         std::cerr << "Error while reading " << mInputFilenames[0].c_str()
88                   << " " << err << std::endl;
89         std::stringstream error;
90         error << err;
91         mLastError = error.str();
92         return;
93       }
94       analyzeImageIO = dynamic_cast<itk::AnalyzeImageIO*>( reader->GetImageIO() );
95     }
96   } else if (mType == SLICED) {
97     mImage=vvImage::New();
98     typedef itk::Image< InputPixelType, VImageDimension > InputImageType;
99     typedef itk::ImageFileReader<InputImageType> ReaderType;
100     typename ReaderType::Pointer reader = ReaderType::New();
101     reader->SetFileName(mInputFilenames[0]);
102     reader->UpdateOutputInformation();
103
104     typedef itk::Image< InputPixelType, VImageDimension-1 > SlicedImageType;
105     typedef itk::ExtractImageFilter<InputImageType, SlicedImageType> FilterType;
106
107     typename InputImageType::RegionType inputRegion = reader->GetOutput()->GetLargestPossibleRegion();
108     typename InputImageType::SizeType inputSize = inputRegion.GetSize();
109     typename InputImageType::IndexType start = inputRegion.GetIndex();
110     typename InputImageType::SizeType extractedRegionSize = inputSize;
111     typename InputImageType::RegionType extractedRegion;
112     extractedRegionSize[VImageDimension - 1] = 0;
113     extractedRegion.SetSize(extractedRegionSize);
114     start[VImageDimension - 1] = mSlice;
115     extractedRegion.SetIndex(start);
116
117     typename FilterType::Pointer filter = FilterType::New();
118     filter->SetExtractionRegion(extractedRegion);
119     filter->SetInput(reader->GetOutput());
120     filter->ReleaseDataFlagOn();
121 #if ITK_VERSION_MAJOR == 4
122     filter->SetDirectionCollapseToSubmatrix();
123 #endif
124     try {
125       mImage->AddItkImage<SlicedImageType>(filter->GetOutput());
126     } catch ( itk::ExceptionObject & err ) {
127       std::cerr << "Error while slicing " << mInputFilenames[0].c_str()
128                 << "(slice #" << mSlice << ") " << err << std::endl;
129       return;
130     }
131     analyzeImageIO = dynamic_cast<itk::AnalyzeImageIO*>( reader->GetImageIO() );
132   } else {
133     if (mInputFilenames.size() > 1) {
134       typedef itk::Image< InputPixelType, VImageDimension > InputImageType;
135       typedef itk::ImageSeriesReader<InputImageType> ReaderType;
136       typename ReaderType::Pointer reader = ReaderType::New();
137       reader->SetFileNames(mInputFilenames);
138       reader->ReleaseDataFlagOn();
139
140       try {
141         if (mType == IMAGEWITHTIME)
142           mImage=vvImageFromITK<VImageDimension,InputPixelType>(reader->GetOutput(),true);
143         else
144           mImage=vvImageFromITK<VImageDimension,InputPixelType>(reader->GetOutput());
145       } catch ( itk::ExceptionObject & err ) {
146         std::cerr << "Error while reading image series:" << err << std::endl;
147         std::stringstream error;
148         error << err;
149         mLastError = error.str();
150         return;
151       }
152     } else {
153       typedef itk::Image< InputPixelType, VImageDimension > InputImageType;
154       typedef itk::ImageFileReader<InputImageType> ReaderType;
155       typename ReaderType::Pointer reader = ReaderType::New();
156       reader->SetFileName(mInputFilenames[0]);
157       reader->ReleaseDataFlagOn();
158
159       try {
160         if (mType == IMAGEWITHTIME)
161           mImage=vvImageFromITK<VImageDimension,InputPixelType>(reader->GetOutput(),true);
162         else
163           mImage=vvImageFromITK<VImageDimension,InputPixelType>(reader->GetOutput());
164       } catch ( itk::ExceptionObject & err ) {
165         std::cerr << "Error while reading " << mInputFilenames[0].c_str()
166                   << " " << err << std::endl;
167         std::stringstream error;
168         error << err;
169         mLastError = error.str();
170         return;
171       }
172       analyzeImageIO = dynamic_cast<itk::AnalyzeImageIO*>( reader->GetImageIO() );
173     }
174   }
175
176   // For unknown analyze orientations, we set identity
177   if(analyzeImageIO) {
178     const double m[16] = {1.,0.,0.,0.,
179                           0.,0.,1.,0.,
180                           0.,-1.,0.,0.,
181                           0.,0.,0.,1.};
182     int i;
183     for(i=0; i<16 && m[i]==mImage->GetTransform()->GetMatrix()->GetElement(i%4, i/4); i++);
184     if(i==16) {
185       itkWarningMacro(<< "Analyze image file format detected with unknown orientation. "
186                       << "Forcing identity orientation, use other file format if not ok.");
187       mImage->GetTransform()->Identity();
188     }
189   }
190 }
191 //----------------------------------------------------------------------------
192
193
194 #endif /* end #define vvImageReader_TXX */
195