]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageInfoUR.cxx
109b1f2d228810244b685d34ac57ff202edca009
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageInfoUR.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*!
27  * @file        imageInfoUR.cxx
28  * @brief       This file contains the implementation of the ImageInfoUR class.
29  * @author      Info-Dev
30  * @author      Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
31  * @date        2011-11-15
32  */
33
34 #include "imageInfoUR.h"
35
36 // ----------------------------------------------------------------------------------
37 ImageInfoUR::ImageInfoUR() 
38 {
39         this->m_OnMemory        = false;
40         this->m_OnDisk          = false;
41 }
42
43 // ----------------------------------------------------------------------------------
44 ImageInfoUR::~ImageInfoUR() 
45 {
46 }
47
48 // ----------------------------------------------------------------------------------
49 void ImageInfoUR::SetImageName(const StringType &imgName) 
50 {
51         this->m_ImageName               = imgName;
52 }
53
54 // ----------------------------------------------------------------------------------
55 void ImageInfoUR::SetImageMManager(ImageMManagerType* imMManager) 
56 {
57         this->m_ImageMManager   = imMManager;
58 }
59
60 // ----------------------------------------------------------------------------------
61 void ImageInfoUR::SetStatus(const bool& onMemory) 
62 {
63         this->m_OnMemory                = onMemory;
64 }
65
66 // ----------------------------------------------------------------------------------
67 ImageInfoUR::StringType ImageInfoUR::GetImageName() 
68 {
69         return (this->m_ImageName);
70 }
71
72 // ----------------------------------------------------------------------------------
73 ImageInfoUR::VTKImageDataPointerType ImageInfoUR::GetUndoImage() 
74 {
75         return (this->m_UndoImage);
76 }
77
78 // ----------------------------------------------------------------------------------
79 ImageInfoUR::VTKImageDataPointerType ImageInfoUR::GetRedoImage() 
80 {
81         return (this->m_RedoImage);
82 }
83
84 // ----------------------------------------------------------------------------------
85 ImageInfoUR::ImageMManagerType* ImageInfoUR::GetImageMManager() 
86 {
87         return (this->m_ImageMManager);
88 }
89
90 // ----------------------------------------------------------------------------------
91 bool ImageInfoUR::GetStatus() 
92 {
93         return (this->m_OnMemory);
94 }
95
96 // ----------------------------------------------------------------------------------
97 void ImageInfoUR::SetImages(VTKImageDataPointerType imgUndo, VTKImageDataPointerType imgRedo) 
98 {
99         this->m_UndoImage = imgUndo;
100         this->m_RedoImage = imgRedo;
101         this->SetStatus(true);
102 }
103
104 // ----------------------------------------------------------------------------------
105 void ImageInfoUR::LoadImagesToMemory(const StringType& gPath) 
106 {
107         //setting paths
108         StringType filename             = gPath + this->m_ImageName;
109         StringType undoImagePath        = filename + "_Undo.mhd";
110         StringType redoImagePath        = filename + "_Redo.mhd";
111         //Loading Undo Image
112         VTKMetaImageReaderPointerType readerUndo = VTKMetaImageReaderPointerType::New();
113         readerUndo->SetFileName(undoImagePath.c_str());
114 //EED 2017-01-01 Migration VTK7
115 #if VTK_MAJOR_VERSION <= 5
116         // ..
117 #else
118         readerUndo->Update();
119 #endif
120
121         this->m_UndoImage = readerUndo->GetOutput();
122 //EED 2017-01-01 Migration VTK7
123 #if VTK_MAJOR_VERSION <= 5
124         this->m_UndoImage->Update();
125 #else
126         this->m_UndoImage->Modified();
127 #endif
128         //Loading Redo Image
129         VTKMetaImageReaderPointerType readerRedo = VTKMetaImageReaderPointerType::New();
130         readerRedo->SetFileName(redoImagePath.c_str());
131 //EED 2017-01-01 Migration VTK7
132 #if VTK_MAJOR_VERSION <= 5
133         // ..
134 #else
135         readerRedo->Update();
136 #endif
137
138         this->m_RedoImage = readerRedo->GetOutput();
139 //EED 2017-01-01 Migration VTK7
140 #if VTK_MAJOR_VERSION <= 5
141         this->m_RedoImage->Update();
142 #else
143         this->m_RedoImage->Modified();
144 #endif
145         //Updating status
146         this->m_OnMemory = true;
147 }
148
149 // ----------------------------------------------------------------------------------
150 void ImageInfoUR::RemoveImagesFromMemory(const StringType& gPath) 
151 {
152         if (!this->m_OnDisk) 
153         {
154                 this->SaveImagesOnDisk(gPath);
155         }
156         this->m_UndoImage = NULL;
157         this->m_RedoImage = NULL;
158         this->SetStatus(false);
159 }
160
161 // ----------------------------------------------------------------------------------
162 void ImageInfoUR::SaveImagesOnDisk(const StringType& gPath) 
163 {
164         printf("EED ImageInfoUR::SaveImagesOnDisk Start  \n");
165         this->m_OnDisk                          = true;
166         StringType filename             = gPath + this->m_ImageName;
167         StringType undoImagePath        = filename + "_Undo.mhd";
168         StringType redoImagePath        = filename + "_Redo.mhd";
169         this->SaveImageAsMHD(undoImagePath, this->m_UndoImage);
170         this->SaveImageAsMHD(redoImagePath, this->m_RedoImage);
171         printf("EED ImageInfoUR::SaveImagesOnDisk %s \n", undoImagePath.c_str() );
172 }
173
174 // ----------------------------------------------------------------------------------
175 void ImageInfoUR::RemoveImagesFromDisk(const StringType& gPath) 
176 {
177         StringType filename             = gPath + this->m_ImageName;
178         StringType undoImagePathMHD = filename + "_Undo.mhd";
179         StringType redoImagePathMHD = filename + "_Redo.mhd";
180         StringType undoImagePathRAW = filename + "_Undo.raw";
181         StringType redoImagePathRAW = filename + "_Redo.raw";
182         remove(undoImagePathMHD.c_str());
183         remove(redoImagePathMHD.c_str());
184         remove(undoImagePathRAW.c_str());
185         remove(redoImagePathRAW.c_str());
186 }
187
188 // ----------------------------------------------------------------------------------
189 void ImageInfoUR::SaveImageAsMHD(const StringType& filename, VTKImageDataPointerType image) 
190 {
191         VTKMetaImageWriterPointerType w = VTKMetaImageWriterPointerType::New();
192 //EED 2017-01-01 Migration VTK7
193 #if VTK_MAJOR_VERSION <= 5
194         w->SetInput(image);
195 #else
196         w->SetInputData(image);
197 #endif
198         w->SetCompression(false);
199         w->SetFileDimensionality(image->GetDataDimension());
200         w->SetFileName(filename.c_str());
201         w->Write();
202 }
203 // ----------------------------------------------------------------------------------