]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageUndoRedo.cxx
#3109 creaMaracasVisu Bug New Normal - branch vtk7itk4 compilation with vtk7
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / imageUndoRedo.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        imageUndoRedo.cxx
28  * @brief       This file contains the implementation of the ImageUndoRedo 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 "imageUndoRedo.h"
35
36 // ----------------------------------------------------------------------------------
37 ImageUndoRedo::ImageUndoRedo( )
38 {
39         this->m_ImagesDeque = new IDequeType( );
40 }
41 // ----------------------------------------------------------------------------------
42 //virtual
43 ImageUndoRedo::~ImageUndoRedo( )
44 {
45
46 }
47 // ----------------------------------------------------------------------------------
48 //virtual
49 void ImageUndoRedo::Undo( )
50 {
51         ImageInfoUR* imageInfo = this->m_ImagesDeque->Undo( );
52         if( imageInfo != NULL)
53         {
54                 this->DrawUR( imageInfo, true );
55                 this->UpdateUndoImage( );
56         }
57 }
58 // ----------------------------------------------------------------------------------
59 //virtual
60 void ImageUndoRedo::Redo( )
61 {
62         ImageInfoUR* imageInfo = this->m_ImagesDeque->Redo( );
63         if( imageInfo != NULL)
64         {
65                 this->DrawUR( imageInfo, false );
66                 this->UpdateUndoImage( );
67         }
68 }
69 // ----------------------------------------------------------------------------------
70 void ImageUndoRedo::SetImage( VTKImageDataPointerType image )
71 {
72         this->m_CurrentImage = image;
73
74 //EED 2017-01-01 Migration VTK7
75 #if VTK_MAJOR_VERSION <= 5
76         this->m_CurrentImage->Update( );
77 #else
78         // ..
79 #endif
80
81         this->UpdateUndoImage( );
82 }
83 // ----------------------------------------------------------------------------------
84 //virtual
85 void ImageUndoRedo::SetURImages( ImageMManagerType* imMManager )
86 {
87         ImageMManagerType* newImageManager = new ImageMManagerType( imMManager );
88         if( newImageManager->ValidateRegion( ) )
89         {
90                 RegionSType region = newImageManager->GetModifiedRegion( );
91                 VTKImageDataPointerType imgUndo = this->GetImageRegion( region,
92                         this->m_UndoImage );
93                 VTKImageDataPointerType imgRedo = this->GetImageRegion( region,
94                         this->m_CurrentImage );
95                 this->m_ImagesDeque->AddImagesToURContainer( imgUndo, imgRedo,
96                         newImageManager );
97                 this->UpdateUndoImage( );
98         }
99         else
100         {
101                 std::cerr << "INVALID REGION" << std::endl;
102         }
103 }
104 // ----------------------------------------------------------------------------------
105 void ImageUndoRedo::UpdateUndoImage( )
106 {
107 //EED 2017-01-01 Migration VTK7
108 #if VTK_MAJOR_VERSION <= 5
109         this->m_CurrentImage->Update( );
110 #else
111         // ...
112 #endif
113         this->m_UndoImage = VTKImageDataPointerType::New( );
114         this->m_UndoImage->DeepCopy( m_CurrentImage );
115 //EED 2017-01-01 Migration VTK7
116 #if VTK_MAJOR_VERSION <= 5
117         this->m_UndoImage->Update( );
118 #else
119         // ..
120 #endif
121 }
122 // ----------------------------------------------------------------------------------
123 ImageUndoRedo::VTKImageDataPointerType ImageUndoRedo::GetImageRegion(
124         const RegionSType& region, VTKImageDataPointerType img )
125 {
126         VTKExtractVOIPointerType extract = VTKExtractVOIPointerType::New( );
127         extract->SetVOI( region.minX, region.maxX, region.minY, region.maxY,
128                 region.minZ, region.maxZ );
129         extract->SetSampleRate( 1, 1, 1 );
130 //EED 2017-01-01 Migration VTK7
131 #if VTK_MAJOR_VERSION <= 5
132         extract->SetInput( img );
133 #else
134         extract->SetInputData( img );
135 #endif
136         VTKImageDataPointerType imgResult = extract->GetOutput( );
137
138 //EED 2017-01-01 Migration VTK7
139 #if VTK_MAJOR_VERSION <= 5
140         imgResult->Update( );
141 #else
142         // ..
143 #endif
144
145         return ( imgResult );
146 }
147 // ----------------------------------------------------------------------------------
148 void ImageUndoRedo::SetCurrentImage( VTKImageDataPointerType img )
149 {
150         this->m_CurrentImage = img;
151 }
152 // ----------------------------------------------------------------------------------
153 //virtual
154 void ImageUndoRedo::DrawUR( ImageInfoUR* imageInfo, const bool& undo )
155 {
156         VTKImageDataPointerType img;
157         if( undo )
158         {
159                 img = imageInfo->GetUndoImage( );
160         } //fi
161         else
162         {
163                 img = imageInfo->GetRedoImage( );
164         } //else
165         RegionSType region = imageInfo->GetImageMManager( )->GetModifiedRegion( );
166         if( img != NULL)
167         {
168                 int *dim = img->GetDimensions( );
169                 int sizeXImageIn = dim[ 0 ];
170                 size_t linesize = sizeXImageIn * sizeof(unsigned short);
171                 for( int j = region.minY, y = 0; j <= region.maxY; j++, y++ )
172                 {
173                         for( int k = region.minZ, z = 0; k <= region.maxZ; k++, z++ )
174                         {
175                                 void* ptrsrc = img->GetScalarPointer( 0, y, z );
176                                 void* ptrdest = this->m_CurrentImage->GetScalarPointer(
177                                         region.minX, j, k );
178                                 memcpy( ptrdest, ptrsrc, linesize );
179                         }
180                 }
181                 this->m_CurrentImage->Modified( );
182         }
183         this->m_ImagesDeque->ManageMemory( );
184 }
185 // ----------------------------------------------------------------------------------