]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageUndoRedo.cxx
#3331 creaMaracasVisu Bug New Normal - Select contour with 2 points, HelpViewerNV
[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,this->m_UndoImage );
92                 VTKImageDataPointerType imgRedo = this->GetImageRegion( region,this->m_CurrentImage );
93                 this->m_ImagesDeque->AddImagesToURContainer( imgUndo, imgRedo,newImageManager );
94                 this->UpdateUndoImage( );
95         } else {
96                 std::cerr << "INVALID REGION" << std::endl;
97         }
98 }
99 // ----------------------------------------------------------------------------------
100 void ImageUndoRedo::UpdateUndoImage( )
101 {
102 //EED 2017-01-01 Migration VTK7
103 #if VTK_MAJOR_VERSION <= 5
104         this->m_CurrentImage->Update( );
105 #else
106         // ...
107 #endif
108         this->m_UndoImage = VTKImageDataPointerType::New( );
109         this->m_UndoImage->DeepCopy( m_CurrentImage );
110 //EED 2017-01-01 Migration VTK7
111 #if VTK_MAJOR_VERSION <= 5
112         this->m_UndoImage->Update( );
113 #else
114         // ..
115 #endif
116 }
117 // ----------------------------------------------------------------------------------
118 ImageUndoRedo::VTKImageDataPointerType ImageUndoRedo::GetImageRegion(
119         const RegionSType& region, VTKImageDataPointerType img )
120 {
121         VTKExtractVOIPointerType extract = VTKExtractVOIPointerType::New( );
122         extract->SetVOI( region.minX, region.maxX, region.minY, region.maxY,
123                 region.minZ, region.maxZ );
124         extract->SetSampleRate( 1, 1, 1 );
125 //EED 2017-01-01 Migration VTK7
126 #if VTK_MAJOR_VERSION <= 5
127         extract->SetInput( img );
128 #else
129         extract->SetInputData( img );
130 #endif
131         VTKImageDataPointerType imgResult = extract->GetOutput( );
132
133 //EED 2017-01-01 Migration VTK7
134 #if VTK_MAJOR_VERSION <= 5
135         imgResult->Update( );
136 #else
137         // ..
138 #endif
139
140         return ( imgResult );
141 }
142 // ----------------------------------------------------------------------------------
143 void ImageUndoRedo::SetCurrentImage( VTKImageDataPointerType img )
144 {
145         this->m_CurrentImage = img;
146 }
147 // ----------------------------------------------------------------------------------
148 //virtual
149 void ImageUndoRedo::DrawUR( ImageInfoUR* imageInfo, const bool& undo )
150 {
151         VTKImageDataPointerType img;
152         if( undo )
153         {
154                 img = imageInfo->GetUndoImage( );
155         } else {
156                 img = imageInfo->GetRedoImage( );
157         } //else
158         RegionSType region = imageInfo->GetImageMManager( )->GetModifiedRegion( );
159         if( img != NULL)
160         {
161                 int *dim = img->GetDimensions( );
162                 int sizeXImageIn = dim[ 0 ];
163                 size_t linesize = sizeXImageIn * sizeof(unsigned short);
164                 for( int j = region.minY, y = 0; j <= region.maxY; j++, y++ )
165                 {
166                         for( int k = region.minZ, z = 0; k <= region.maxZ; k++, z++ )
167                         {
168                                 void* ptrsrc = img->GetScalarPointer( 0, y, z );
169                                 void* ptrdest = this->m_CurrentImage->GetScalarPointer( region.minX, j, k );
170                                 memcpy( ptrdest, ptrsrc, linesize );
171                         } // for k
172                 } // for j
173                 this->m_CurrentImage->Modified( );
174         } // if img
175         this->m_ImagesDeque->ManageMemory( );
176 }
177 // ----------------------------------------------------------------------------------