]> Creatis software - clitk.git/blob - vv/vvSlicerManager.h
Merge branch 'master' into blutdirmaster
[clitk.git] / vv / vvSlicerManager.h
1
2 /*=========================================================================
3   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
4
5   Authors belong to: 
6   - University of LYON              http://www.universite-lyon.fr/
7   - Léon Bérard cancer center       http://www.centreleonberard.fr
8   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
9
10   This software is distributed WITHOUT ANY WARRANTY; without even
11   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12   PURPOSE.  See the copyright notices for more information.
13
14   It is distributed under dual licence
15
16   - BSD        See included LICENSE.txt file
17   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
18   ===========================================================================**/
19
20 #ifndef VVSLICERMANAGER_H
21 #define VVSLICERMANAGER_H
22
23 // std
24 #include <iostream>
25 #include <vector>
26 #include <string>
27
28 // QT
29 #include <QObject>
30
31 // VTK
32 #include <vtksys/SystemTools.hxx>
33 class vtkImageData;
34 class vtkInteractorStyle;
35 class vtkRenderWindow;
36 class vtkPolyData;
37
38 // VV
39 #include "clitkCommon.h"
40 #include "vvImage.h"
41 #include "vvMesh.h"
42 #include "vvImageReader.h"
43
44 class vvSlicer;
45 class vvInteractorStyleNavigator;
46 class vvImageReader;
47 class vvImageReader;
48 class vvLandmarks;
49
50 //------------------------------------------------------------------------------
51 class vvSlicerManager : public QObject {
52   Q_OBJECT
53
54   public:
55   vvSlicerManager(int numberOfSlicers);
56   ~vvSlicerManager();
57
58   std::string GetLastError() {
59     return mLastError;
60   }
61
62   bool SetImage(std::string filename, vvImageReader::LoadedImageType type, int n=0, unsigned int slice=0);
63   void SetImage(vvImage::Pointer image);
64   bool SetImages(std::vector<std::string> filenames, vvImageReader::LoadedImageType type, int n=0);
65
66   bool SetOverlay(std::string filename, int dim, std::string component);
67   bool SetFusion(std::string filename, int dim, std::string component);
68   ///Set a VF by loading it from the disk
69   bool SetVF(std::string filename);
70   ///Set a VF from memory
71   bool SetVF(vvImage::Pointer vf,std::string filename);
72   ///Add a mesh to the slicers, with optional propagation using a vector field
73   void AddContour(vvMesh::Pointer ,bool propagate=false);
74   ///Toggle temporal superposition of contours
75   void ToggleContourSuperposition();
76
77   std::string GetFileName()      { return mFileName; }
78   std::string GetBaseFileName()  { return mBaseFileName; }
79   int GetBaseFileNameNumber()    { return mBaseFileNameNumber; }
80   std::string GetVFName()        { return mVFName; }
81   std::string GetOverlayName()   { return mOverlayName; }
82   std::string GetFusionName()    { return mFusionName; }
83   std::string GetListOfAbsoluteFilePathInOneString(const std::string &actorType);
84
85   ///Switch between nearest neighbor and linear interpolation
86   void ToggleInterpolation();
87   vvSlicer* GetSlicer(int i);
88   void UpdateSlicer(int num, bool state);
89   void SetSlicerWindow(int i, vtkRenderWindow* RW);
90   void SetInteractorStyleNavigator(int i,vtkInteractorStyle* style);
91
92   int GetNumberOfSlicers()        { return mSlicers.size(); }
93   vvImage::Pointer GetImage()  { return mImage; }
94   vvImage::Pointer GetVF()     { return mVF; }
95   int GetType()                { return mType; }
96   void SetId(std::string id)   { mId = id; }
97   std::string GetId()          { return mId; }
98   int GetDimension() {
99     if (mImage) return mImage->GetNumberOfDimensions();
100     else return -1;
101   }
102
103   void SetFilename(std::string f, int number=0);
104
105   void SetSliceOrientation(int slicer, int orientation);
106   void SetTSlice(int slice);
107   void SetNextTSlice(int originating_slicer);
108   void SetPreviousTSlice(int originating_slicer);
109   void SetTSliceInSlicer(int tslice, int slicer);
110
111   void GenerateDefaultLookupTable();
112   void SetColorWindow(double s);
113   void SetColorLevel(double s);
114   void SetLocalColorWindowing(const int slicer);
115   void SetOpacity(int i, double factor);
116   void SetColorMap(int colormap);
117   void SetPreset(int preset);
118   void SetOverlayColor(int color) {
119     mOverlayColor = (color/60)*60; //SR: new vvBlendImageActor needs 0 or 255 per component
120   }
121   void SetFusionOpacity(int opacity) {
122     mFusionOpacity = opacity;
123   }
124   void SetFusionThresholdOpacity(int thresOpacity) {
125     mFusionThresOpacity = thresOpacity;
126   }
127   void SetFusionColorMap(int colorMap) {
128     mFusionColorMap = colorMap;
129   }
130   void SetFusionWindow(double window) {
131     mFusionWindow = window;
132   }
133   void SetFusionLevel(double level) {
134     mFusionLevel = level;
135   }
136
137   double GetColorWindow();
138   double GetColorLevel();
139   int GetColorMap() {
140     return mColorMap;
141   }
142   int GetPreset() {
143     return mPreset;
144   }
145   int GetOverlayColor() {
146     return mOverlayColor;
147   }
148
149   int GetFusionOpacity() {
150     return mFusionOpacity;
151   }
152   int GetFusionThresholdOpacity() {
153     return mFusionThresOpacity;
154   }
155   int GetFusionColorMap() {
156     return mFusionColorMap;
157   }
158   double GetFusionWindow() {
159     return mFusionWindow;
160   }
161   double GetFusionLevel() {
162     return mFusionLevel;
163   }
164
165   void SetCursorAndCornerAnnotationVisibility(int s);
166   void UpdateViews(int current, int slicer);
167   void UpdateLinked(int slicer);
168   void UpdateLinkedNavigation(vvSlicer *slicer, bool bPropagate=false);
169   void Render();
170
171   void AddLink(std::string newId) {
172     mLinkedId.push_back(newId);
173   }
174   void RemoveLink(std::string oldId) {
175     mLinkedId.remove(oldId); 
176   }
177   
178   bool IsLinked() {
179     return mLinkedId.size() > 0;
180   }
181
182   ///Remove the actor defined by its type and index (example: 3rd contour)
183   void RemoveActor(const std::string& actor_type, int overlay_index);
184   void RemoveActors();
185   void Reload();
186   void ReloadOverlay();
187   void ReloadFusion();
188   void ReloadVF();
189
190   void Activated();
191   void Picked();
192   void UpdateInfoOnCursorPosition(int slicer);
193   void UpdateWindowLevel();
194   void UpdateSlice(int slicer);
195   void UpdateTSlice(int slicer);
196   void UpdateSliceRange(int slicer);
197
198   vvLandmarks *GetLandmarks();
199   void AddLandmark(float x,float y,float z,float t);
200   
201   void NextImage(int slicer);
202   void PrevImage(int slicer);
203   void LeftButtonReleaseEvent(int slicer);
204   void VerticalSliderHasChanged(int slicer, int slice);
205   double GetScalarComponentAsDouble(vtkImageData *image, double X, double Y, double Z, int component=0);
206
207 signals :
208   void currentImageChanged(std::string id);
209   void currentPickedImageChanged(std::string id);
210   void UpdatePosition(int visibility,double x, double y, double z, double X, double Y, double Z, double value);
211   void UpdateVector(int display, double x, double y, double z, double value);
212   void UpdateOverlay(int display, double valueOver, double valueRef);
213   void UpdateFusion(int display, double valueFus);
214   void UpdateWindows(int slicer, int view, int slice);
215   void UpdateOrientation(int slicer, int orientation);
216   void UpdateSlice(int slicer, int slice);
217   void UpdateTSlice(int slicer, int slice);
218   void UpdateSliceRange(int slice, int min, int max, int tmin, int tmax);
219   void WindowLevelChanged(double window, double level, int preset, int colormap);
220   void UpdateLinkManager(std::string, int slicer, double x, double y, double z, int temps);
221   void UpdateLinkedNavigation(std::string, vvSlicerManager*, vvSlicer*);
222   void LandmarkAdded();
223   void ChangeImageWithIndexOffset(vvSlicerManager *sm, int slicer, int offset);
224   void LeftButtonReleaseSignal(int slicer);
225   void AVerticalSliderHasChanged(int slicer, int slice);
226
227 protected:
228   std::vector< vtkSmartPointer<vvSlicer> > mSlicers;
229   vvImageReader::Pointer mReader;
230   vvImageReader::Pointer mOverlayReader;
231   vvImageReader::Pointer mFusionReader;
232   vvImageReader::Pointer mVectorReader;
233   vvImage::Pointer mImage;
234   vvImage::Pointer mVF;
235   int mColorMap;
236   int mOverlayColor;
237
238   int mFusionOpacity;
239   int mFusionThresOpacity;
240   int mFusionColorMap;
241   double mFusionWindow;
242   double mFusionLevel;
243
244   int mPreset;
245   vvImageReader::LoadedImageType mType;
246   std::string mVFComponent;
247   std::string mOverlayComponent;
248   std::string mFusionComponent;
249   std::string mFileName;
250   std::string mBaseFileName;
251   int mBaseFileNameNumber;
252   std::string mId;
253   std::string mVFName;
254   std::string mOverlayName;
255   std::string mFusionName;
256   std::string mVFId;
257   std::string mLastError;
258   std::list<std::string> mLinkedId;
259
260   vvLandmarks* mLandmarks;
261   
262   std::vector<int> mPreviousSlice;
263   std::vector<int> mPreviousTSlice;
264 };
265
266 #endif