]> Creatis software - clitk.git/blob - vv/vvSlicer.cxx
22a2c732c2aa1b7e2d9d5e954431e4ae8a969e05
[clitk.git] / vv / vvSlicer.cxx
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 #include <QMessageBox>
20 #include <QString>
21
22 #include "vvSlicer.h"
23 #include "vvImage.h"
24 #include "vvSlicerManagerCommand.h"
25 #include "vvGlyphSource.h"
26 #include "vvGlyph2D.h"
27
28 #include <vtkVersion.h>
29 #include <vtkExtentTranslator.h>
30 #include <vtkAlgorithm.h>
31 #include <vtkExecutive.h>
32 #include <vtkStreamingDemandDrivenPipeline.h>
33 #include <vtkInformation.h>
34 #include <vtkTextProperty.h>
35 #include <vtkTextActor.h>
36 #include <vtkTextSource.h>
37 #include <vtkActor2D.h>
38 #include <vtkCursor2D.h>
39 #include <vtkPolyDataMapper2D.h>
40 #include <vtkProperty2D.h>
41 #include <vtkCornerAnnotation.h>
42 #include <vtkImageMapToWindowLevelColors.h>
43 #include <vtkImageData.h>
44 #include <vtkImageActor.h>
45 #include <vvBlendImageActor.h>
46 #include <vtkToolkits.h>
47 #include <vtkObjectFactory.h>
48 #include <vtkPointData.h>
49 #include <vtkDataArray.h>
50 #include <vtkFloatArray.h>
51 #include <vtkClipPolyData.h>
52 #include <vtkActor2DCollection.h>
53 #include <vtkGlyph3D.h>
54 #include <vtkMath.h>
55 #include <vtkCursor3D.h>
56 #include <vtkProperty.h>
57 #include <vtkLight.h>
58 #include <vtkLightCollection.h>
59 #include <vtkScalarBarActor.h>
60 #include <vtkLookupTable.h>
61
62 #include <vtkRenderer.h>
63 #include <vtkRendererCollection.h>
64 #include <vtkRenderWindow.h>
65 #include <vtkRenderWindowInteractor.h>
66 #include <vtkCamera.h>
67 #include <vtkCallbackCommand.h>
68 #include <vtkCommand.h>
69 #include <vtkPolyDataMapper.h>
70 #include <vtkBox.h>
71
72 #include <vtkExtractVOI.h>
73 #include <vtkSphereSource.h>
74 #include <vtkCutter.h>
75 #include <vtkAssignAttribute.h>
76 #include <vtkImageAccumulate.h>
77 #include <vtkImageReslice.h>
78 #include <vtkOpenGLImageSliceMapper.h>
79 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
80 #  include <vtkImageMapper3D.h>
81 #  include <vtkImageSliceMapper.h>
82 #endif
83
84 vtkStandardNewMacro(vvSlicer);
85 static void copyExtent(int* in, int* to){
86  for(int i=0; i<6; ++i) 
87  {
88         to[i]=in[i];
89  } 
90 }
91 //------------------------------------------------------------------------------
92 vvSlicer::vvSlicer()
93
94         mFusionSequenceCode = -1;
95   this->UnInstallPipeline();
96   mImage = NULL;
97   mReducedExtent = new int[6];
98   mRegisterExtent = NULL;
99   mCurrentTSlice = 0;
100   mCurrentFusionTSlice = 0;
101   mCurrentOverlayTSlice = 0;
102   mUseReducedExtent = false;
103
104   mCurrent[0] = -VTK_DOUBLE_MAX;
105   mCurrent[1] = -VTK_DOUBLE_MAX;
106   mCurrent[2] = -VTK_DOUBLE_MAX;
107
108   mCursor[0] = 0;//-VTK_DOUBLE_MAX;
109   mCursor[1] = 0;//-VTK_DOUBLE_MAX;
110   mCursor[2] = 0;//-VTK_DOUBLE_MAX;
111   mCursor[3] = 0;//-VTK_DOUBLE_MAX;
112
113   mSubSampling = 5;
114   mScale = 1;
115   mVFLog = 0;
116   mVFWidth = 1;
117   mVFColor[0] = 0;
118   mVFColor[1] = 1;
119   mVFColor[2] = 0;
120
121   crossCursor = vtkSmartPointer<vtkCursor2D>::New();
122   crossCursor->AllOff();
123   crossCursor->AxesOn();
124   crossCursor->SetTranslationMode(1);
125   crossCursor->SetRadius(2);
126
127   pdm = vtkSmartPointer<vtkPolyDataMapper2D>::New();
128 #if VTK_MAJOR_VERSION <= 5
129   pdm->SetInput(crossCursor->GetOutput());
130 #else
131   pdm->SetInputConnection(crossCursor->GetOutputPort(0));
132 #endif
133
134   pdmA = vtkSmartPointer<vtkActor2D>::New();
135   pdmA->SetMapper(pdm);
136   pdmA->GetProperty()->SetColor(255,10,212);
137   pdmA->SetVisibility(0);
138   pdmA->SetPickable(0);
139
140   ca = vtkSmartPointer<vtkCornerAnnotation>::New();
141   ca->GetTextProperty()->SetColor(255,10,212);
142   ca->SetVisibility(1);
143   mFileName = "";
144
145   mVF = NULL;
146   mOverlay = NULL;
147   mFusion = NULL;
148   mLandmarks = NULL;
149
150   legend = vtkSmartPointer<vtkScalarBarActor>::New();
151   //legend->SetTitle("test!");
152   legend->SetPosition(0.82,0.18);
153   legend->SetWidth(0.1);
154   legend->SetVisibility(0);
155   legend->SetLabelFormat("%.1f");
156   this->GetRenderer()->AddActor(legend);
157   showFusionLegend = false;
158
159   this->InstallPipeline();
160
161   mLinkOverlayWindowLevel = true;
162   mImageVisibility = true;
163
164 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
165   this->GetImageActor()->GetMapper()->BorderOn();
166 #endif
167
168   mSlicingTransform = vtkSmartPointer<vtkTransform>::New();
169   mConcatenatedTransform = vtkSmartPointer<vtkTransform>::New();
170   mConcatenatedFusionTransform = vtkSmartPointer<vtkTransform>::New();
171   mConcatenatedOverlayTransform = vtkSmartPointer<vtkTransform>::New();
172   mFirstSetSliceOrientation = true;
173 }
174 //------------------------------------------------------------------------------
175
176
177 //------------------------------------------------------------------------------
178 vtkImageMapToWindowLevelColors* vvSlicer::GetOverlayMapper()
179
180   return mOverlayMapper.GetPointer();
181 }
182 //------------------------------------------------------------------------------
183
184
185 //------------------------------------------------------------------------------
186 vvBlendImageActor* vvSlicer::GetOverlayActor()
187
188   return mOverlayActor.GetPointer();
189 }
190 //------------------------------------------------------------------------------
191
192
193 //------------------------------------------------------------------------------
194 vtkImageMapToColors* vvSlicer::GetFusionMapper()
195
196   return mFusionMapper.GetPointer();
197 }
198 //------------------------------------------------------------------------------
199
200
201 //------------------------------------------------------------------------------
202 vtkImageActor* vvSlicer::GetFusionActor()
203
204   return mFusionActor.GetPointer();
205 }
206 //------------------------------------------------------------------------------
207
208
209 //------------------------------------------------------------------------------
210 vtkActor* vvSlicer::GetVFActor()
211
212   return mVFActor.GetPointer();
213 }
214 //------------------------------------------------------------------------------
215
216
217 //------------------------------------------------------------------------------
218 vtkCornerAnnotation* vvSlicer::GetAnnotation()
219
220   return ca.GetPointer();
221 }
222 //------------------------------------------------------------------------------
223
224
225 //------------------------------------------------------------------------------
226 void vvSlicer::EnableReducedExtent(bool b)
227
228   mUseReducedExtent = b;
229 }
230 //------------------------------------------------------------------------------
231
232
233 //------------------------------------------------------------------------------
234 void vvSlicer::SetReducedExtent(int * ext)
235
236   copyExtent(ext, mReducedExtent);
237 }
238 //------------------------------------------------------------------------------
239
240
241 //------------------------------------------------------------------------------
242 void vvSlicer::AddContour(vvMesh::Pointer contour,bool propagate)
243
244
245   mSurfaceCutActors.push_back(new vvMeshActor());
246   if (propagate)
247     mSurfaceCutActors.back()->Init(contour,mCurrentTSlice,mVF);
248   else
249     mSurfaceCutActors.back()->Init(contour,mCurrentTSlice);
250   mSurfaceCutActors.back()->SetSlicingOrientation(SliceOrientation);
251   this->GetRenderer()->AddActor(mSurfaceCutActors.back()->GetActor());
252
253   SetContourSlice();
254 }
255 //------------------------------------------------------------------------------
256
257
258 //------------------------------------------------------------------------------
259 void vvSlicer::ToggleContourSuperposition()
260
261   for (std::vector<vvMeshActor*>::iterator i=mSurfaceCutActors.begin();
262        i!=mSurfaceCutActors.end(); i++)
263     (*i)->ToggleSuperposition();
264 }
265 //------------------------------------------------------------------------------
266
267
268 //------------------------------------------------------------------------------
269 void vvSlicer::SetCursorColor(int r,int g, int b)
270
271   pdmA->GetProperty()->SetColor(r,g,b);
272 }
273 //------------------------------------------------------------------------------
274
275
276 //------------------------------------------------------------------------------
277 void vvSlicer::SetCursorVisibility(bool s)
278
279   pdmA->SetVisibility(s);
280 }
281 //------------------------------------------------------------------------------
282
283
284 //------------------------------------------------------------------------------
285 bool vvSlicer::GetCursorVisibility()
286
287   return pdmA->GetVisibility();
288 }
289 //------------------------------------------------------------------------------
290
291
292 //------------------------------------------------------------------------------
293 void vvSlicer::SetCornerAnnotationVisibility(bool s)
294
295   ca->SetVisibility(s);
296 }
297 //------------------------------------------------------------------------------
298
299
300 //------------------------------------------------------------------------------
301 bool vvSlicer::GetCornerAnnotationVisibility()
302
303   return ca->GetVisibility();
304 }
305 //------------------------------------------------------------------------------
306
307
308 //------------------------------------------------------------------------------
309 vvSlicer::~vvSlicer()
310
311   for (std::vector<vvMeshActor*>::iterator i=mSurfaceCutActors.begin();
312        i!=mSurfaceCutActors.end(); i++)
313     delete (*i);
314   delete [] mReducedExtent;
315 }
316 //------------------------------------------------------------------------------
317
318 //------------------------------------------------------------------------------
319 double* vvSlicer::GetCurrentPosition()
320
321   return mCurrentBeforeSlicingTransform;
322 }
323 //------------------------------------------------------------------------------
324
325 //------------------------------------------------------------------------------
326 void vvSlicer::SetCurrentPosition(double x, double y, double z, int t)
327
328   mCurrentBeforeSlicingTransform[0]=x;
329   mCurrentBeforeSlicingTransform[1]=y;
330   mCurrentBeforeSlicingTransform[2]=z;
331   mSlicingTransform->GetInverse()->TransformPoint(mCurrentBeforeSlicingTransform,mCurrent);
332   if (t>=0) SetTSlice(t);
333 }
334 //------------------------------------------------------------------------------
335
336
337 //------------------------------------------------------------------------------
338 void vvSlicer::SetImage(vvImage::Pointer image)
339
340   if (image->GetVTKImages().size()) {
341     mImage = image;
342
343     if (!mImageReslice) {
344       mImageReslice = vtkSmartPointer<vtkImageReslice>::New();
345       mImageReslice->SetInterpolationModeToLinear();
346       mImageReslice->AutoCropOutputOn();
347       mImageReslice->SetBackgroundColor(-1000,-1000,-1000,1);
348     }
349
350     mConcatenatedTransform->Identity();
351     mConcatenatedTransform->Concatenate(mImage->GetTransform()[0]);
352     mConcatenatedTransform->Concatenate(mSlicingTransform);
353     mImageReslice->SetResliceTransform(mConcatenatedTransform);
354 #if VTK_MAJOR_VERSION <= 5
355     mImageReslice->SetInput(0, mImage->GetFirstVTKImageData());
356 #else
357     mImageReslice->SetInputData(0, mImage->GetFirstVTKImageData());
358 #endif
359     mImageReslice->UpdateInformation();
360
361 #if VTK_MAJOR_VERSION <= 5
362     this->Superclass::SetInput(mImageReslice->GetOutput());
363 #else
364     this->Superclass::SetInputConnection(mImageReslice->GetOutputPort());
365 #endif
366
367     int extent[6];
368 #if VTK_MAJOR_VERSION <= 5
369     this->GetInput()->GetWholeExtent(extent);
370 #else
371     int* ext = mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
372     copyExtent(ext, extent);
373 #endif
374
375     // Prevent crash when reload -> change slice if outside extent
376     if (Slice < extent[SliceOrientation*2] || Slice>=extent[SliceOrientation*2+1]) {
377       Slice = (extent[SliceOrientation*2+1]+extent[SliceOrientation*2])/2.0;
378     }
379
380     // Make sure that the required part image has been computed
381     extent[SliceOrientation*2] = Slice;
382     extent[SliceOrientation*2+1] = Slice;    
383 #if VTK_MAJOR_VERSION <= 5
384     mImageReslice->GetOutput()->SetUpdateExtent(extent);
385     mImageReslice->GetOutput()->Update();
386 #else
387     mImageReslice->SetUpdateExtent(extent);
388     mImageReslice->Update();
389 #endif
390
391     this->UpdateDisplayExtent();
392
393     mCurrentTSlice = 0;
394     ca->SetText(0,mFileName.c_str());
395   }
396 }
397 //------------------------------------------------------------------------------
398
399
400 //------------------------------------------------------------------------------
401 void vvSlicer::SetOverlay(vvImage::Pointer overlay)
402
403   if (overlay->GetVTKImages().size()) {
404     mOverlay = overlay;
405     mOverlayVisibility = true;
406     
407     if (!mOverlayReslice) {
408       mOverlayReslice = vtkSmartPointer<vtkImageReslice>::New();
409       mOverlayReslice->SetInterpolationModeToLinear();
410       mOverlayReslice->AutoCropOutputOn();
411       mOverlayReslice->SetBackgroundColor(-1000,-1000,-1000,1);
412     }
413
414     mConcatenatedOverlayTransform->Identity();
415     mConcatenatedOverlayTransform->Concatenate(mOverlay->GetTransform()[0]);
416     mConcatenatedOverlayTransform->Concatenate(mSlicingTransform);
417     mOverlayReslice->SetResliceTransform(mConcatenatedOverlayTransform);
418 #if VTK_MAJOR_VERSION <= 5
419     mOverlayReslice->SetInput(0, mOverlay->GetFirstVTKImageData());
420 #else
421     mOverlayReslice->SetInputData(0, mOverlay->GetFirstVTKImageData());
422 #endif
423     mOverlayReslice->Update();
424
425     if (!mOverlayMapper)
426       mOverlayMapper = vtkSmartPointer<vtkImageMapToWindowLevelColors>::New();
427 #if VTK_MAJOR_VERSION <= 5
428     mOverlayMapper->SetInput(mOverlayReslice->GetOutput());
429 #else
430     mOverlayMapper->SetInputConnection(mOverlayReslice->GetOutputPort(0));
431 #endif
432
433     if (!mOverlayActor) {
434       mOverlayActor = vtkSmartPointer<vvBlendImageActor>::New();
435 #if VTK_MAJOR_VERSION <= 5
436       mOverlayActor->SetInput(mOverlayMapper->GetOutput());
437 #else
438       mOverlayActor->GetMapper()->SetInputConnection(mOverlayMapper->GetOutputPort());
439 #endif
440       mOverlayActor->SetPickable(0);
441       mOverlayActor->SetVisibility(true);
442       mOverlayActor->SetOpacity(0.5);
443 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
444       mOverlayActor->GetMapper()->BorderOn();
445 #endif
446       }
447
448     //stupid but necessary : the Overlay need to be rendered before fusion
449     if (mFusionActor) {
450       this->GetRenderer()->RemoveActor(mFusionActor);
451       this->GetRenderer()->AddActor(mOverlayActor);
452       this->GetRenderer()->AddActor(mFusionActor);
453     } else
454       this->GetRenderer()->AddActor(mOverlayActor);
455
456     //Synchronize orientation and slice
457     AdjustResliceToSliceOrientation(mOverlayReslice);
458     this->UpdateDisplayExtent();
459     this->SetTSlice(mCurrentTSlice);
460   }
461 }
462 //------------------------------------------------------------------------------
463
464
465 //------------------------------------------------------------------------------
466 void vvSlicer::SetFusion(vvImage::Pointer fusion, int fusionSequenceCode)
467
468         mFusionSequenceCode = fusionSequenceCode;
469   if (fusion->GetVTKImages().size()) {
470     mFusion = fusion;
471     mFusionVisibility = true;
472
473     if (!mFusionReslice) {
474       mFusionReslice = vtkSmartPointer<vtkImageReslice>::New();
475       mFusionReslice->SetInterpolationModeToLinear();
476       mFusionReslice->AutoCropOutputOn();
477       mFusionReslice->SetBackgroundColor(-1000,-1000,-1000,1);
478     }
479
480     mConcatenatedFusionTransform->Identity();
481     mConcatenatedFusionTransform->Concatenate(mFusion->GetTransform()[0]);
482     mConcatenatedFusionTransform->Concatenate(mSlicingTransform);
483     mFusionReslice->SetResliceTransform(mConcatenatedFusionTransform);
484 #if VTK_MAJOR_VERSION <= 5
485     mFusionReslice->SetInput(0, mFusion->GetFirstVTKImageData());
486 #else
487     mFusionReslice->SetInputData(0, mFusion->GetFirstVTKImageData());
488 #endif
489     mFusionReslice->Update();
490
491     if (!mFusionMapper)
492       mFusionMapper = vtkSmartPointer<vtkImageMapToColors>::New();
493
494     vtkSmartPointer<vtkLookupTable> lut = vtkLookupTable::New();
495     lut->SetRange(0, 1);
496     lut->SetValueRange(0, 1);
497     lut->SetSaturationRange(0, 0);
498     lut->Build();
499     mFusionMapper->SetLookupTable(lut);
500 #if VTK_MAJOR_VERSION <= 5
501     mFusionMapper->SetInput(mFusionReslice->GetOutput());
502 #else
503     mFusionMapper->SetInputConnection(mFusionReslice->GetOutputPort(0));
504 #endif
505     
506     if (!mFusionActor) {
507       mFusionActor = vtkSmartPointer<vtkImageActor>::New();
508 #if VTK_MAJOR_VERSION <= 5
509       mFusionActor->SetInput(mFusionMapper->GetOutput());
510 #else
511       mFusionActor->GetMapper()->SetInputConnection(mFusionMapper->GetOutputPort());
512 #endif
513       mFusionActor->SetPickable(0);
514       mFusionActor->SetVisibility(true);
515       mFusionActor->SetOpacity(0.7);
516 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
517       mFusionActor->GetMapper()->BorderOn();
518 #endif
519
520       this->GetRenderer()->AddActor(mFusionActor);
521     }
522
523     //Synchronize orientation and slice
524     AdjustResliceToSliceOrientation(mFusionReslice);
525     this->UpdateDisplayExtent();
526     this->SetTSlice(mCurrentTSlice);
527   }
528 }
529 //------------------------------------------------------------------------------
530
531
532 //------------------------------------------------------------------------------
533 bool vvSlicer::GetActorVisibility(const std::string& actor_type, int overlay_index)
534
535   bool vis = false;
536   if (actor_type == "image")
537     vis = mImageVisibility;
538   else if (actor_type == "vector")
539     vis = mVFVisibility;
540   else if (actor_type == "overlay")
541     vis = mOverlayVisibility;
542   else if ( (actor_type == "fusion") || (actor_type == "fusionSequence") )
543     vis = mFusionVisibility;
544   else if (actor_type == "contour")
545     vis = this->mSurfaceCutActors[overlay_index]->GetActor()->GetVisibility();
546   return vis;
547 }
548 //------------------------------------------------------------------------------
549
550 //------------------------------------------------------------------------------
551 void vvSlicer::SetActorVisibility(const std::string& actor_type, int overlay_index ,bool vis)
552
553   if (actor_type == "image")
554     mImageVisibility = vis;
555   else if (actor_type == "vector")
556     mVFVisibility = vis;
557   else if (actor_type == "overlay")
558     mOverlayVisibility = vis;
559   else if ( (actor_type == "fusion") || (actor_type == "fusionSequence") )
560     mFusionVisibility = vis;
561   else if (actor_type == "contour")
562     this->mSurfaceCutActors[overlay_index]->GetActor()->SetVisibility(vis);
563   UpdateDisplayExtent();
564 }
565 //------------------------------------------------------------------------------
566
567 //------------------------------------------------------------------------------
568 void vvSlicer::SetVF(vvImage::Pointer vf)
569
570   if (vf->GetVTKImages().size()) {
571     mVF = vf;
572     mVFVisibility = true;
573
574     if (!mAAFilter) {
575       mAAFilter= vtkSmartPointer<vtkAssignAttribute>::New();
576       mVOIFilter = vtkSmartPointer<vtkExtractVOI>::New();
577       mVOIFilter->SetSampleRate(mSubSampling,mSubSampling,mSubSampling);
578     }
579 #if VTK_MAJOR_VERSION <= 5
580     mVOIFilter->SetInput(vf->GetFirstVTKImageData());
581     mAAFilter->SetInput(mVOIFilter->GetOutput());
582 #else
583     mVOIFilter->SetInputData(vf->GetFirstVTKImageData());
584     mAAFilter->SetInputConnection(mVOIFilter->GetOutputPort());
585 #endif
586     ///This tells VTK to use the scalar (pixel) data of the image to draw the little arrows
587     mAAFilter->Assign(vtkDataSetAttributes::SCALARS, vtkDataSetAttributes::VECTORS, vtkAssignAttribute::POINT_DATA);
588
589     if (!mArrow)
590       mArrow = vtkSmartPointer<vvGlyphSource>::New();
591     mArrow->SetGlyphTypeToSpecificArrow();
592     mArrow->SetScale(mScale);
593     mArrow->FilledOff();
594
595     // Glyph the gradient vector (with arrows)
596     if (!mGlyphFilter)
597       mGlyphFilter = vtkSmartPointer<vvGlyph2D>::New();
598 #if VTK_MAJOR_VERSION <= 5
599     mGlyphFilter->SetInput(mAAFilter->GetOutput());
600     mGlyphFilter->SetSource(mArrow->GetOutput());
601 #else
602     mGlyphFilter->SetInputConnection(mAAFilter->GetOutputPort());
603     mGlyphFilter->SetSourceConnection(mArrow->GetOutputPort());
604 #endif
605     mGlyphFilter->ScalingOn();
606     mGlyphFilter->SetScaleModeToScaleByVector();
607     mGlyphFilter->OrientOn();
608     mGlyphFilter->SetVectorModeToUseVector();
609     mGlyphFilter->SetColorModeToColorByVector();
610
611     if (!mVFColorLUT)
612       mVFColorLUT = vtkSmartPointer<vtkLookupTable>::New();
613
614     double mVFColorHSV[3];
615     vtkMath::RGBToHSV(mVFColor, mVFColorHSV);
616     mVFColorLUT->SetHueRange(mVFColorHSV[0], mVFColorHSV[0]);
617     mVFColorLUT->SetSaturationRange(mVFColorHSV[1],mVFColorHSV[1]);
618     mVFColorLUT->SetValueRange(mVFColorHSV[2], mVFColorHSV[2]);
619
620     if (!mVFMapper)
621       mVFMapper = vtkSmartPointer<vtkPolyDataMapper>::New();
622 #if VTK_MAJOR_VERSION <= 5
623     mVFMapper->SetInput(mGlyphFilter->GetOutput());
624 #else
625     mVFMapper->SetInputConnection(mGlyphFilter->GetOutputPort());
626 #endif
627     mVFMapper->ImmediateModeRenderingOn();
628     mVFMapper->SetLookupTable(mVFColorLUT);
629
630     if (!mVFActor)
631       mVFActor = vtkSmartPointer<vtkActor>::New();
632     mVFActor->SetMapper(mVFMapper);
633     mVFActor->SetPickable(0);
634     mVFActor->GetProperty()->SetLineWidth(mVFWidth);
635     this->UpdateDisplayExtent();
636     this->GetRenderer()->AddActor(mVFActor);
637
638     //Synchronize slice
639     SetTSlice(mCurrentTSlice);
640   }
641 }
642 //------------------------------------------------------------------------------
643
644
645 //------------------------------------------------------------------------------
646 void vvSlicer::SetLandmarks(vvLandmarks* landmarks)
647
648   mLandmarks = landmarks;
649   if (landmarks) {
650
651     if (!mCross)
652       mCross = vtkSmartPointer<vtkCursor3D>::New();
653         if (!mClipBox)
654       mClipBox = vtkSmartPointer<vtkBox>::New();
655     if (!mLandClipper)
656       mLandClipper = vtkSmartPointer<vvClipPolyData>::New();
657     if (!mLandGlyph)
658       mLandGlyph = vtkSmartPointer<vtkGlyph3D>::New();
659     if (!mLandMapper)
660       mLandMapper = vtkSmartPointer<vtkPolyDataMapper>::New();
661     if (!mLandActor)
662       mLandActor = vtkSmartPointer<vtkActor>::New();
663
664     mCross->SetFocalPoint(0.0,0.0,0.0);
665     mCross->SetModelBounds(-10,10,-10,10,-10,10);
666     mCross->AllOff();
667     mCross->AxesOn();
668
669     mLandClipper->SetClipFunction(mClipBox);
670     mLandClipper->InsideOutOn();
671 #if VTK_MAJOR_VERSION <= 5
672     mLandClipper->SetInput(mLandmarks->GetOutput());
673
674     mLandGlyph->SetSource(mCross->GetOutput());
675     mLandGlyph->SetInput(mLandClipper->GetOutput());
676 #else
677     mLandClipper->SetInputData(mLandmarks->GetOutput());
678
679     mLandGlyph->SetSourceConnection(mCross->GetOutputPort());
680     mLandGlyph->SetInputConnection(mLandClipper->GetOutputPort());
681 #endif
682     //mLandGlyph->SetIndexModeToScalar();
683     //mLandGlyph->SetRange(0,1);
684     //mLandGlyph->ScalingOff();
685
686     //mLandGlyph->SetColorModeToColorByScalar();
687     
688     mLandGlyph->SetScaleModeToDataScalingOff();
689     mLandGlyph->SetIndexModeToOff();
690
691     mLandMapper->SetInputConnection(mLandGlyph->GetOutputPort());
692     //mLandMapper->ScalarVisibilityOff();
693
694     mLandActor->SetMapper(mLandMapper);
695     mLandActor->GetProperty()->SetOpacity(0.995);  //in order to get VTK to turn on the alpha-blending in OpenGL
696     mLandActor->GetProperty()->SetColor(255,10,212);
697     mLandActor->SetPickable(0);
698     mLandActor->SetVisibility(true);
699     this->UpdateDisplayExtent();
700     this->GetRenderer()->AddActor(mLandActor);
701   }
702 }
703 //------------------------------------------------------------------------------
704
705 //------------------------------------------------------------------------------
706 //FIXME: this function leaks memory, we should fix it someday :)
707 void vvSlicer::RemoveActor(const std::string& actor_type, int overlay_index)
708
709   if (actor_type == "vector") {
710     Renderer->RemoveActor(mVFActor);
711     mGlyphFilter=NULL;
712     mVF = NULL;
713     mArrow = NULL;
714     mAAFilter=NULL;
715     mVOIFilter = NULL;
716     mVFMapper = NULL;
717     mVFActor = NULL;
718   }
719   if (actor_type == "overlay") {
720     Renderer->RemoveActor(mOverlayActor);
721     mOverlay = NULL;
722     mOverlayActor = NULL;
723     mOverlayMapper = NULL;
724   }
725   if ( (actor_type == "fusion") || (actor_type == "fusionSequence") ) {
726     Renderer->RemoveActor(mFusionActor);
727     mFusion = NULL;
728     mFusionActor = NULL;
729     mFusionMapper = NULL;
730   }
731   if (actor_type == "contour") {
732     Renderer->RemoveActor(this->mSurfaceCutActors[overlay_index]->GetActor());
733     mSurfaceCutActors.erase(mSurfaceCutActors.begin()+overlay_index);
734   }
735 }
736 //------------------------------------------------------------------------------
737
738
739 //------------------------------------------------------------------------------
740 void vvSlicer::SetVFSubSampling(int sub)
741
742   if (mVOIFilter) {
743     mVOIFilter->SetSampleRate(mSubSampling,mSubSampling,mSubSampling);
744     mSubSampling = sub;
745   }
746   UpdateDisplayExtent();
747   Render();
748 }
749 //------------------------------------------------------------------------------
750
751
752 //------------------------------------------------------------------------------
753 void vvSlicer::SetVFScale(int scale)
754
755   mScale = scale;
756   if (mArrow)
757     mArrow->SetScale(mScale);
758   UpdateDisplayExtent();
759   Render();
760 }
761 //------------------------------------------------------------------------------
762
763 //------------------------------------------------------------------------------
764 void vvSlicer::SetVFWidth(int width)
765
766   mVFWidth = width;
767   if (mVFActor)
768     mVFActor->GetProperty()->SetLineWidth(mVFWidth);
769   UpdateDisplayExtent();
770   Render();
771 }
772 //------------------------------------------------------------------------------
773
774
775 //------------------------------------------------------------------------------
776 void vvSlicer::SetVFLog(int log)
777
778   mVFLog = log;
779   if (mGlyphFilter) {
780     mGlyphFilter->SetUseLog(mVFLog);
781     mGlyphFilter->Modified();
782   }
783   UpdateDisplayExtent();
784   Render();
785 }
786 //------------------------------------------------------------------------------
787
788
789 //------------------------------------------------------------------------------
790 void vvSlicer::SetTSlice(int t, bool updateLinkedImages)
791
792         if (!updateLinkedImages) {
793                 mCurrentTSlice = t;
794 #if VTK_MAJOR_VERSION <= 5
795                 mImageReslice->SetInput( mImage->GetVTKImages()[mCurrentTSlice] );
796 #else
797                 mImageReslice->SetInputData( mImage->GetVTKImages()[mCurrentTSlice] );
798 #endif
799                 // Update transform
800                 mConcatenatedTransform->Identity();
801                 mConcatenatedTransform->Concatenate(mImage->GetTransform()[mCurrentTSlice]);
802                 mConcatenatedTransform->Concatenate(mSlicingTransform);
803                 UpdateDisplayExtent();
804                 return;
805         }
806   if (t < 0)
807     mCurrentTSlice = 0;
808   else if ((unsigned int)t >= mImage->GetVTKImages().size())
809     mCurrentTSlice = mImage->GetVTKImages().size() -1;
810   else
811     mCurrentTSlice = t;
812
813   // Update transform
814   mConcatenatedTransform->Identity();
815   mConcatenatedTransform->Concatenate(mImage->GetTransform()[mCurrentTSlice]);
816   mConcatenatedTransform->Concatenate(mSlicingTransform);
817
818   // Update image data
819 #if VTK_MAJOR_VERSION <= 5
820    mImageReslice->SetInput( mImage->GetVTKImages()[mCurrentTSlice] );
821 #else
822   mImageReslice->SetInputData( mImage->GetVTKImages()[mCurrentTSlice] );
823 #endif
824   if (mVF && mVFActor->GetVisibility()) {
825     if (mVF->GetVTKImages().size() > (unsigned int)mCurrentTSlice)
826 #if VTK_MAJOR_VERSION <= 5
827       mVOIFilter->SetInput(mVF->GetVTKImages()[mCurrentTSlice]);
828 #else
829       mVOIFilter->SetInputData(mVF->GetVTKImages()[mCurrentTSlice]);
830 #endif
831   }
832   //update the overlay
833   if (mOverlay && mOverlayActor->GetVisibility()) {
834     if (mOverlay->GetVTKImages().size() > (unsigned int)t) {
835       mCurrentOverlayTSlice = t;
836 #if VTK_MAJOR_VERSION <= 5
837       mOverlayReslice->SetInput( mOverlay->GetVTKImages()[mCurrentOverlayTSlice] );
838 #else
839       mOverlayReslice->SetInputData( mOverlay->GetVTKImages()[mCurrentOverlayTSlice] );
840 #endif
841       // Update overlay transform
842       mConcatenatedOverlayTransform->Identity();
843       mConcatenatedOverlayTransform->Concatenate(mOverlay->GetTransform()[mCurrentOverlayTSlice]);
844       mConcatenatedOverlayTransform->Concatenate(mSlicingTransform);
845     }
846   }
847   //update the fusion ; except in case this is a fusionSequence, in which case both 'times' should be independent.
848   if (mFusion && mFusionActor->GetVisibility() && (mFusionSequenceCode<0)) {
849     if (mFusion->GetVTKImages().size() > (unsigned int)t) {
850       mCurrentFusionTSlice = t;
851 #if VTK_MAJOR_VERSION <= 5
852       mFusionReslice->SetInput( mFusion->GetVTKImages()[mCurrentFusionTSlice]);
853 #else
854       mFusionReslice->SetInputData( mFusion->GetVTKImages()[mCurrentFusionTSlice]);
855 #endif
856
857       // Update fusion transform
858       mConcatenatedFusionTransform->Identity();
859       mConcatenatedFusionTransform->Concatenate(mFusion->GetTransform()[mCurrentFusionTSlice]);
860       mConcatenatedFusionTransform->Concatenate(mSlicingTransform);
861     }
862   }
863   if (mSurfaceCutActors.size() > 0)
864     for (std::vector<vvMeshActor*>::iterator i=mSurfaceCutActors.begin();
865          i!=mSurfaceCutActors.end(); i++)
866       (*i)->SetTimeSlice(mCurrentTSlice);
867   UpdateDisplayExtent();
868 }
869 //------------------------------------------------------------------------------
870
871
872 //------------------------------------------------------------------------------
873 void vvSlicer::SetFusionSequenceTSlice(int t)
874
875   if (mFusion && mFusionActor->GetVisibility() && (mFusionSequenceCode>=0)) {
876     if (mFusion->GetVTKImages().size() > (unsigned int)t) {
877       mCurrentFusionTSlice = t;
878 #if VTK_MAJOR_VERSION <= 5
879       mFusionReslice->SetInput( mFusion->GetVTKImages()[mCurrentFusionTSlice] );
880 #else
881       mFusionReslice->SetInputData( mFusion->GetVTKImages()[mCurrentFusionTSlice] );
882 #endif
883       // Update fusion transform
884       mConcatenatedFusionTransform->Identity();
885       mConcatenatedFusionTransform->Concatenate(mFusion->GetTransform()[mCurrentFusionTSlice]); //not really useful...
886       mConcatenatedFusionTransform->Concatenate(mSlicingTransform);
887     }
888   }
889
890   UpdateDisplayExtent();
891 }
892 //------------------------------------------------------------------------------
893
894
895 //------------------------------------------------------------------------------
896 int vvSlicer::GetTSlice()
897
898   return mCurrentTSlice;
899 }
900 //------------------------------------------------------------------------------
901
902 //------------------------------------------------------------------------------
903 int vvSlicer::GetMaxCurrentTSlice()
904
905   int t = mCurrentTSlice;
906   if(mOverlay)
907     t = std::max(t, mCurrentOverlayTSlice);
908   if(mFusion&& (mFusionSequenceCode<0)) //ignore fusionSequence data: for these, the times are not to be related (this way)
909     t = std::max(t, mCurrentFusionTSlice);
910   return t;
911 }
912 //------------------------------------------------------------------------------
913
914 //------------------------------------------------------------------------------
915 int vvSlicer::GetFusionTSlice()
916
917   return mCurrentFusionTSlice;
918 }
919 //------------------------------------------------------------------------------
920
921 //------------------------------------------------------------------------------
922 int vvSlicer::GetOverlayTSlice()
923
924   return mCurrentOverlayTSlice;
925 }
926 //------------------------------------------------------------------------------
927
928 //------------------------------------------------------------------------------
929 void vvSlicer::SetSliceOrientation(int orientation)
930
931   //if 2D image, force to watch in Axial View
932   int extent[6];
933 #if VTK_MAJOR_VERSION <= 5
934     this->GetInput()->GetWholeExtent(extent);
935 #else
936     int* ext = mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
937     copyExtent(ext, extent);
938 #endif
939
940   if (extent[5]-extent[4] <= 2)
941     orientation = vtkImageViewer2::SLICE_ORIENTATION_XY;
942
943   if (orientation < vtkImageViewer2::SLICE_ORIENTATION_YZ ||
944       orientation > vtkImageViewer2::SLICE_ORIENTATION_XY) {
945     vtkErrorMacro("Error - invalid slice orientation " << orientation);
946     return;
947   }
948   
949   this->SliceOrientation = orientation;
950
951   if(mFusion)
952     AdjustResliceToSliceOrientation(mFusionReslice);
953
954   if(mOverlay)
955     AdjustResliceToSliceOrientation(mOverlayReslice);
956
957   // Update the viewer
958   
959   // Go to current cursor position
960   // double* cursorPos = GetCursorPosition();
961   // DDV(cursorPos, 3);
962   // SetCurrentPosition(cursorPos[0],cursorPos[1],cursorPos[2],cursorPos[3]);
963
964   if (mFirstSetSliceOrientation) {
965     int *range = this->GetSliceRange();
966     if (range)
967       this->Slice = static_cast<int>((range[0] + range[1]) * 0.5);
968 #if VTK_MAJOR_VERSION <= 5
969       mFirstSetSliceOrientation = false;
970 #endif
971   }
972   else if (this->Renderer && this->GetInput()) {
973     double s = mCursor[orientation];
974     double sCursor = (s - this->GetInput()->GetOrigin()[orientation])/this->GetInput()->GetSpacing()[orientation];
975     this->Slice = static_cast<int>(sCursor);
976   }
977
978   this->UpdateOrientation();
979   
980   this->UpdateDisplayExtent();
981   
982   if (mFirstSetSliceOrientation) {
983     mFirstSetSliceOrientation = false;
984   }
985   
986   if (this->Renderer && this->GetInput()) {
987     double scale = this->Renderer->GetActiveCamera()->GetParallelScale();
988     this->Renderer->ResetCamera();
989     this->Renderer->GetActiveCamera()->SetParallelScale(scale);
990   }
991
992   SetContourSlice();
993 }
994 //----------------------------------------------------------------------------
995
996 //------------------------------------------------------------------------------
997 // This function ensures that we sample the slices of a vtkImageReslice filter
998 // in the direction of the slicer (SliceOrientation) similarly as mImageReslice.
999 // In other words, we change the grid of the reslice in the same way as the grid
1000 // of the displayed image in the slicing direction.
1001 void vvSlicer::AdjustResliceToSliceOrientation(vtkImageReslice *reslice)
1002
1003   // Reset autocrop and update output information
1004   reslice->SetOutputOriginToDefault();
1005   reslice->SetOutputSpacingToDefault();
1006 #if VTK_MAJOR_VERSION <= 5
1007   reslice->GetOutput()->UpdateInformation();
1008 #else
1009   reslice->UpdateInformation();
1010 #endif
1011
1012   // Ge new origin / spacing
1013   double origin[3];
1014   double spacing[3];
1015   reslice->GetOutput()->GetOrigin(origin);
1016   reslice->GetOutput()->GetSpacing(spacing);
1017
1018   // Use similar spacing as the image in the direction SliceOrientation
1019   spacing[this->SliceOrientation] = mImageReslice->GetOutput()->GetSpacing()[this->SliceOrientation];
1020
1021   // Modify origin to be on the image grid in the direction SliceOrientation in 3 steps
1022   // Step 1: from world coordinates to image coordinates
1023   origin[this->SliceOrientation] -= mImageReslice->GetOutput()->GetOrigin()[this->SliceOrientation];
1024   origin[this->SliceOrientation] /= mImageReslice->GetOutput()->GetSpacing()[this->SliceOrientation];
1025
1026   // Step 2: round to nearest grid positionInc. This has been validated as the only
1027   // way to have something consistent with the thickness of a 2D slice visible on the
1028   // other slices. The thickness is accounted for so if the 2D slice is to thin and
1029   // between two slices, one will never be able to see this 2D slice (bug #1883).
1030   origin[this->SliceOrientation] = itk::Math::Round<double>(origin[this->SliceOrientation]);
1031
1032   // Step 3: back to world coordinates
1033   origin[this->SliceOrientation] *= mImageReslice->GetOutput()->GetSpacing()[this->SliceOrientation];
1034   origin[this->SliceOrientation] += mImageReslice->GetOutput()->GetOrigin()[this->SliceOrientation];
1035
1036   // Set new spacing and origin
1037   reslice->SetOutputOrigin(origin);
1038   reslice->SetOutputSpacing(spacing);
1039   reslice->UpdateInformation();
1040 }
1041 //------------------------------------------------------------------------------
1042
1043 //----------------------------------------------------------------------------
1044 int * vvSlicer::GetExtent()
1045
1046   int *w_ext;
1047   if (mUseReducedExtent) {
1048     w_ext = mReducedExtent;
1049   }
1050   else {
1051 #if VTK_MAJOR_VERSION <= 5
1052     w_ext = GetInput()->GetWholeExtent();
1053 #else
1054     w_ext = mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
1055 #endif
1056   }
1057   return w_ext;
1058 }
1059 //----------------------------------------------------------------------------
1060
1061
1062 //----------------------------------------------------------------------------
1063 int vvSlicer::GetOrientation()
1064
1065   return this->SliceOrientation;
1066 }
1067 //----------------------------------------------------------------------------
1068
1069
1070 //----------------------------------------------------------------------------
1071 void vvSlicer::UpdateDisplayExtent()
1072
1073   emit UpdateDisplayExtentBegin(mSlicerNumber);
1074   vtkImageData *input = this->GetInput();
1075   if (!input || !this->ImageActor) {
1076     return;
1077   }
1078
1079 #if VTK_MAJOR_VERSION <= 5
1080   input->UpdateInformation();
1081 #else
1082   mRegisterExtent = mImageReslice->GetOutputInformation(0)->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
1083 #endif
1084   this->SetSlice( this->GetSlice() ); //SR: make sure the update let the slice in extents
1085
1086   // Local copy of extent
1087   int w_ext[6];
1088 #if VTK_MAJOR_VERSION <= 5
1089   int* ext = GetExtent();
1090 #else
1091   int* ext = mImageReslice->GetOutputInformation(0)->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT());
1092 #endif
1093   copyExtent(ext, w_ext);
1094   if (mUseReducedExtent) {
1095         copyExtent(mReducedExtent, w_ext);
1096     }
1097   // Set slice value
1098
1099   w_ext[ this->SliceOrientation*2   ] = this->Slice;
1100   w_ext[ this->SliceOrientation*2+1 ] = this->Slice;
1101   
1102   // Image actor
1103   this->ImageActor->SetVisibility(mImageVisibility);
1104   this->ImageActor->SetDisplayExtent(w_ext);
1105   
1106 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
1107   // Fix for bug #1882
1108   dynamic_cast<vtkImageSliceMapper *>(this->ImageActor->GetMapper())->SetOrientation(this->GetOrientation());
1109 #endif
1110
1111   // Overlay image actor
1112   if (mOverlay && mOverlayVisibility) {
1113     AdjustResliceToSliceOrientation(mOverlayReslice);
1114     int overExtent[6];
1115 #if VTK_MAJOR_VERSION <= 5
1116     this->ConvertImageToImageDisplayExtent(input, w_ext, mOverlayReslice->GetOutput(), overExtent);
1117     bool out = ClipDisplayedExtent(overExtent, mOverlayMapper->GetInput()->GetWholeExtent());
1118 #else
1119     this->ConvertImageToImageDisplayExtent(mImageReslice->GetOutputInformation(0), w_ext, mOverlayReslice->GetOutput(), overExtent);
1120     bool out = ClipDisplayedExtent(overExtent, mOverlayMapper->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()));
1121 #endif
1122     mOverlayActor->SetVisibility(!out);
1123     mOverlayActor->SetDisplayExtent( overExtent );
1124 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
1125     // Fix for bug #1882
1126     dynamic_cast<vtkImageSliceMapper *>(mOverlayActor->GetMapper())->SetOrientation(this->GetOrientation());
1127 #endif
1128   }
1129   else if(mOverlay)
1130     mOverlayActor->SetVisibility(false);
1131
1132   // Fusion image actor
1133   if (mFusion && mFusionVisibility) {
1134     AdjustResliceToSliceOrientation(mFusionReslice);
1135     int fusExtent[6];
1136 #if VTK_MAJOR_VERSION <= 5
1137     this->ConvertImageToImageDisplayExtent(input, w_ext, mFusionReslice->GetOutput(), fusExtent);
1138     bool out = ClipDisplayedExtent(fusExtent, mFusionMapper->GetInput()->GetWholeExtent());
1139 #else
1140     this->ConvertImageToImageDisplayExtent(mImageReslice->GetOutputInformation(0), w_ext, mFusionReslice->GetOutput(), fusExtent);
1141     bool out = ClipDisplayedExtent(fusExtent, mFusionMapper->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()));
1142 #endif
1143     mFusionActor->SetVisibility(!out);
1144     mFusionActor->SetDisplayExtent( fusExtent );
1145 #if VTK_MAJOR_VERSION >= 6 || (VTK_MAJOR_VERSION >= 5 && VTK_MINOR_VERSION >= 10)
1146     // Fix for bug #1882
1147     dynamic_cast<vtkImageSliceMapper *>(mFusionActor->GetMapper())->SetOrientation(this->GetOrientation());
1148 #endif
1149   }
1150   else if(mFusion)
1151     mFusionActor->SetVisibility(false);
1152   // Vector field actor
1153   double* camera = Renderer->GetActiveCamera()->GetPosition();
1154   double* image_bounds = ImageActor->GetBounds();
1155   double position[3] = {0, 0, 0};
1156   position[this->SliceOrientation] = image_bounds[this->SliceOrientation*2]; 
1157
1158   //print_vector<double, 6>("camera", camera);
1159   //print_vector<double, 6>("image_bounds", image_bounds);
1160   //print_vector<double, 3>("position", position);
1161
1162   // find where to place the VF actor. to deal with
1163   // z-buffer issues, the VF is placed right in front of the image,
1164   // subject to a small offset. the position actually depends on the
1165   // the location of the camera relative to the image. 
1166   double offset = 1;
1167   if (camera[this->SliceOrientation] < image_bounds[this->SliceOrientation*2])
1168     offset = -1;
1169   
1170   if (mVF && mVFVisibility) {
1171     int vfExtent[6];
1172 #if VTK_MAJOR_VERSION <= 5
1173     mVF->GetVTKImages()[0]->UpdateInformation();
1174     this->ConvertImageToImageDisplayExtent(input, w_ext, mVF->GetVTKImages()[0], vfExtent);
1175     bool out = ClipDisplayedExtent(vfExtent, mVOIFilter->GetInput()->GetWholeExtent());
1176 #else
1177     //this->UpdateInformation();
1178     this->ConvertImageToImageDisplayExtent(mImageReslice->GetOutputInformation(0), w_ext, mVF->GetVTKImages()[0], vfExtent);
1179     bool out = ClipDisplayedExtent(vfExtent, mVOIFilter->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()));
1180 #endif
1181     mVFActor->SetVisibility(!out);
1182     mVOIFilter->SetVOI(vfExtent);
1183     int orientation[3] = {1,1,1};
1184     orientation[this->SliceOrientation] = 0;
1185     mGlyphFilter->SetOrientation(orientation[0], orientation[1], orientation[2]);
1186     position[this->SliceOrientation] += offset;
1187     mVFActor->SetPosition(position);
1188     mVFActor->GetProperty()->SetOpacity(0.995); //in order to get VTK to turn on the alpha-blending in OpenGL
1189     mVFMapper->Update();
1190
1191   }
1192   else if(mVF)
1193     mVFActor->SetVisibility(false);
1194     
1195     
1196     double boundsT [6];
1197       for(unsigned int i=0; i<6; i++)
1198         boundsT[i] = ImageActor->GetBounds()[i];
1199       boundsT[ this->SliceOrientation*2   ] = ImageActor->GetBounds()[ this->SliceOrientation*2  ]-fabs(this->GetInput()->GetSpacing()[this->SliceOrientation]);
1200       boundsT[ this->SliceOrientation*2+1 ] = ImageActor->GetBounds()[ this->SliceOrientation*2+1 ]+fabs(this->GetInput()->GetSpacing()[this->SliceOrientation]);
1201
1202
1203   // Landmarks actor
1204   if (mLandActor) {
1205     if (mClipBox) {
1206       RemoveLandmarks();
1207     }
1208     
1209     position[this->SliceOrientation] = offset;
1210     mLandActor->SetPosition(position);
1211   }
1212
1213   // Figure out the correct clipping range
1214   if (this->Renderer) {
1215     if (this->InteractorStyle &&
1216         this->InteractorStyle->GetAutoAdjustCameraClippingRange()) {
1217       this->Renderer->ResetCameraClippingRange();
1218     } else {
1219       vtkCamera *cam = this->Renderer->GetActiveCamera();
1220       if (cam) {
1221         double bounds[6];
1222         this->ImageActor->GetBounds(bounds);
1223         double spos = (double)bounds[this->SliceOrientation * 2];
1224         double cpos = (double)cam->GetPosition()[this->SliceOrientation];
1225         double range = fabs(spos - cpos);
1226         double *spacing = input->GetSpacing();
1227         double sumSpacing = spacing[0] + spacing[1] + spacing[2];
1228         cam->SetClippingRange(range - sumSpacing, range + sumSpacing);
1229       }
1230     }
1231     
1232     if (mLandActor) {
1233         if (mClipBox) {
1234             DisplayLandmarks();
1235         }
1236     }
1237   }
1238   emit UpdateDisplayExtentEnd(mSlicerNumber);
1239 }
1240 //----------------------------------------------------------------------------
1241
1242 //----------------------------------------------------------------------------
1243 void vvSlicer::ConvertImageToImageDisplayExtent(vtkInformation *sourceImage, const int sourceExtent[6],
1244                                                 vtkImageData *targetImage, int targetExtent[6])
1245
1246   double dExtents[6];
1247   double *origin, *spacing;
1248   origin = sourceImage->Get(vtkDataObject::ORIGIN());
1249   spacing = sourceImage->Get(vtkDataObject::SPACING());
1250   for(unsigned int i=0; i<6; i++) {
1251     // From source voxel coordinates to world coordinates
1252     dExtents[i] = origin[i/2] + spacing[i/2] * sourceExtent[i];
1253
1254     // From world coordinates to floating point target voxel coordinates
1255     dExtents[i] = (dExtents[i]- targetImage->GetOrigin()[i/2]) / targetImage->GetSpacing()[i/2];
1256     
1257     // Round to current slice or larger extent
1258     if(i/2==this->GetOrientation())
1259       targetExtent[i] = itk::Math::Round<double>(dExtents[i]);
1260     else if(i%2==1)
1261       targetExtent[i] = itk::Math::Ceil<double>(dExtents[i]);
1262     else
1263       targetExtent[i] = itk::Math::Floor<double>(dExtents[i]);
1264   }
1265 }
1266 //----------------------------------------------------------------------------
1267
1268 //----------------------------------------------------------------------------
1269 void vvSlicer::ConvertImageToImageDisplayExtent(vtkImageData *sourceImage, const int sourceExtent[6],
1270                                                 vtkImageData *targetImage, int targetExtent[6])
1271 {
1272   double dExtents[6];
1273   for(unsigned int i=0; i<6; i++) {
1274     // From source voxel coordinates to world coordinates
1275     dExtents[i] = sourceImage->GetOrigin()[i/2] + sourceImage->GetSpacing()[i/2] * sourceExtent[i];
1276
1277     // From world coordinates to floating point target voxel coordinates
1278     dExtents[i] = (dExtents[i]- targetImage->GetOrigin()[i/2]) / targetImage->GetSpacing()[i/2];
1279     
1280     // Round to current slice or larger extent
1281     if(i/2==this->GetOrientation())
1282       targetExtent[i] = itk::Math::Round<double>(dExtents[i]);
1283     else if(i%2==1)
1284       targetExtent[i] = itk::Math::Ceil<double>(dExtents[i]);
1285     else
1286       targetExtent[i] = itk::Math::Floor<double>(dExtents[i]);
1287   }
1288 }
1289 //----------------------------------------------------------------------------
1290
1291 //----------------------------------------------------------------------------
1292 bool vvSlicer::ClipDisplayedExtent(int extent[6], int refExtent[6])
1293
1294   bool out = false;
1295   int maxBound = 6;
1296
1297   for (int i = 0; i < maxBound; i = i+2) {
1298     //if we are totally outside the image
1299     if ( extent[i] > refExtent[i+1] || extent[i+1] < refExtent[i] ) {
1300       out = true;
1301       break;
1302     }
1303     //crop to the limit of the image
1304     extent[i] = std::max(extent[i], refExtent[i]);
1305     extent[i] = std::min(extent[i], refExtent[i+1]);;
1306     extent[i+1] = std::max(extent[i+1], refExtent[i]);
1307     extent[i+1] = std::min(extent[i+1], refExtent[i+1]);;
1308   }
1309   if (out)
1310     for (int i = 0; i < maxBound; i = i+2) {
1311       extent[i] = refExtent[i];
1312       extent[i+1] = refExtent[i];
1313     }
1314   return out;
1315 }
1316 //----------------------------------------------------------------------------
1317
1318
1319 //----------------------------------------------------------------------------
1320 void vvSlicer::UpdateOrientation()
1321
1322   // Set the camera position
1323   vtkCamera *cam = this->Renderer ? this->Renderer->GetActiveCamera() : NULL;
1324   if (cam) {
1325     switch (this->SliceOrientation) {
1326     case vtkImageViewer2::SLICE_ORIENTATION_XY:
1327       cam->SetFocalPoint(0,0,0);
1328       cam->SetPosition(0,0,-1); // -1 if medical ?
1329       cam->SetViewUp(0,-1,0);
1330       break;
1331
1332     case vtkImageViewer2::SLICE_ORIENTATION_XZ:
1333       cam->SetFocalPoint(0,0,0);
1334       cam->SetPosition(0,-1,0); // 1 if medical ?
1335       cam->SetViewUp(0,0,1);
1336       break;
1337
1338     case vtkImageViewer2::SLICE_ORIENTATION_YZ:
1339       cam->SetFocalPoint(0,0,0);
1340       cam->SetPosition(-1,0,0); // -1 if medical ?
1341       cam->SetViewUp(0,0,1);
1342       break;
1343     }
1344   }
1345 }
1346 //----------------------------------------------------------------------------
1347
1348
1349 //----------------------------------------------------------------------------
1350 void vvSlicer::SetOpacity(double s)
1351
1352   this->GetImageActor()->SetOpacity(s);
1353 }
1354 //----------------------------------------------------------------------------
1355
1356
1357 //----------------------------------------------------------------------------
1358 void vvSlicer::SetRenderWindow(int orientation, vtkRenderWindow * rw)
1359
1360   this->Superclass::SetRenderWindow(rw);
1361   this->SetupInteractor(rw->GetInteractor());
1362   ca->SetImageActor(this->GetImageActor());
1363   ca->SetWindowLevel(this->GetWindowLevel());
1364   ca->SetText(3, "<window>\n<level>");
1365
1366   double bounds[6];
1367   double max = 65000;
1368
1369   bounds[0] = -max;
1370   bounds[1] = max;
1371   bounds[2] = -max;
1372   bounds[3] = max;
1373   bounds[4] = -max;
1374   bounds[5] = max;
1375   crossCursor->SetModelBounds(bounds);
1376
1377   this->GetRenderer()->AddActor(pdmA);
1378   this->GetRenderer()->AddActor(ca);
1379   this->GetRenderer()->ResetCamera();
1380
1381   //this is just a mapping between the labeling of the orientations presented to the user and
1382   //the one used by vtk
1383   SetSliceOrientation(2-(orientation%3));
1384   ResetCamera();
1385 }
1386 //----------------------------------------------------------------------------
1387
1388
1389 //----------------------------------------------------------------------------
1390 void vvSlicer::ResetCamera()
1391
1392   this->GetRenderer()->ResetCamera();
1393 }
1394 //----------------------------------------------------------------------------
1395
1396
1397 //----------------------------------------------------------------------------
1398 void vvSlicer::SetDisplayMode(bool i)
1399
1400         this->GetRenderer()->SetDraw(i);
1401         if (i) UpdateDisplayExtent();
1402 }
1403 //----------------------------------------------------------------------------
1404
1405
1406 //----------------------------------------------------------------------------
1407 void vvSlicer::FlipHorizontalView()
1408
1409   vtkCamera *cam = this->Renderer ? this->Renderer->GetActiveCamera() : NULL;
1410   if (cam) {
1411     double *position = cam->GetPosition();
1412     double factor[3] = {1, 1, 1};
1413     factor[this->SliceOrientation] = -1;
1414     cam->SetPosition(factor[0]*position[0],factor[1]*position[1],factor[2]*position[2]);
1415     
1416 /*    switch (this->SliceOrientation) {
1417     case vtkImageViewer2::SLICE_ORIENTATION_XY:
1418       cam->SetPosition(position[0],position[1],-position[2]);
1419       break;
1420
1421     case vtkImageViewer2::SLICE_ORIENTATION_XZ:
1422       cam->SetPosition(position[0],-position[1],position[2]);
1423       break;
1424
1425     case vtkImageViewer2::SLICE_ORIENTATION_YZ:
1426       cam->SetPosition(-position[0],position[1],position[2]);
1427       break;
1428     }*/
1429
1430     this->Renderer->ResetCameraClippingRange();
1431     this->UpdateDisplayExtent();
1432   }
1433 }
1434 //----------------------------------------------------------------------------
1435
1436
1437 //----------------------------------------------------------------------------
1438 void vvSlicer::FlipVerticalView()
1439
1440   vtkCamera *cam = this->Renderer ? this->Renderer->GetActiveCamera() : NULL;
1441   if (cam) {
1442     FlipHorizontalView();
1443     double *viewup = cam->GetViewUp();
1444     cam->SetViewUp(-viewup[0],-viewup[1],-viewup[2]);
1445     this->UpdateDisplayExtent();
1446   }
1447 }
1448 //----------------------------------------------------------------------------
1449
1450
1451 //----------------------------------------------------------------------------
1452 void vvSlicer::SetColorWindow(double window)
1453
1454   vtkLookupTable* LUT = static_cast<vtkLookupTable*>(this->GetWindowLevel()->GetLookupTable());
1455   if ( LUT ) {
1456     double level = this->GetWindowLevel()->GetLevel();
1457     LUT->SetTableRange(level-fabs(window)/2,level+fabs(window)/2);
1458     LUT->Build();
1459   }
1460   this->vtkImageViewer2::SetColorWindow(window);
1461 }
1462 //----------------------------------------------------------------------------
1463
1464 //----------------------------------------------------------------------------
1465 void vvSlicer::SetColorLevel(double level)
1466
1467   vtkLookupTable* LUT = static_cast<vtkLookupTable*>(this->GetWindowLevel()->GetLookupTable());
1468   if ( LUT ) {
1469     double window = this->GetWindowLevel()->GetWindow();
1470     LUT->SetTableRange(level-fabs(window)/2,level+fabs(window)/2);
1471     LUT->Build();
1472   }
1473   this->vtkImageViewer2::SetColorLevel(level);
1474 }
1475 //----------------------------------------------------------------------------
1476
1477 //----------------------------------------------------------------------------
1478 double vvSlicer::GetOverlayColorWindow()
1479
1480   if(mOverlayMapper)
1481     return mOverlayMapper->GetWindow();
1482   else
1483     return 0.;
1484 }
1485 //----------------------------------------------------------------------------
1486
1487 //----------------------------------------------------------------------------
1488 double vvSlicer::GetOverlayColorLevel()
1489
1490   if(mOverlayMapper)
1491     return mOverlayMapper->GetLevel();
1492   else
1493     return 0.;
1494 }
1495 //----------------------------------------------------------------------------
1496
1497 //----------------------------------------------------------------------------
1498 void vvSlicer::SetOverlayColorWindow(double window)
1499
1500   if(mOverlayMapper)
1501     mOverlayMapper->SetWindow(window);
1502 }
1503 //----------------------------------------------------------------------------
1504
1505 //----------------------------------------------------------------------------
1506 void vvSlicer::SetOverlayColorLevel(double level)
1507
1508   if(mOverlayMapper)
1509     mOverlayMapper->SetLevel(level);
1510 }
1511 //----------------------------------------------------------------------------
1512
1513 //----------------------------------------------------------------------------
1514 // Returns the min an the max value in a 20%x20% region around the mouse pointer
1515 void vvSlicer::GetExtremasAroundMousePointer(double & min, double & max, vtkImageData *image, vtkTransform *transform)
1516
1517   //Get mouse pointer position in view coordinates
1518   double corner1[3];
1519   double corner2[3];
1520   for(int i=0; i<3; i++) {
1521     corner1[i] = mCurrent[i];
1522     corner2[i] = mCurrent[i];
1523   }
1524
1525   this->Renderer->WorldToView(corner1[0], corner1[1], corner1[2]);
1526   this->Renderer->WorldToView(corner2[0], corner2[1], corner2[2]);
1527
1528   // In view coordinates, x is the slicer width and y is the slicer height are the in-plane axis
1529   int w, h;
1530   this->Renderer->GetTiledSize(&w, &h);
1531   corner1[0] -= 0.2*h/(double)w;
1532   corner2[0] += 0.2*h/(double)w;
1533   corner1[1] -= 0.2;
1534   corner2[1] += 0.2;
1535   this->Renderer->ViewToWorld(corner1[0], corner1[1], corner1[2]);
1536   this->Renderer->ViewToWorld(corner2[0], corner2[1], corner2[2]);
1537
1538   //Convert to image pixel coordinates (rounded)
1539   transform->TransformPoint(corner1, corner1);
1540   transform->TransformPoint(corner2, corner2);
1541   int iLocalExtents[6];
1542   for(int i=0; i<3; i++) {
1543     corner1[i] = (corner1[i] - image->GetOrigin()[i])/image->GetSpacing()[i];
1544     corner2[i] = (corner2[i] - image->GetOrigin()[i])/image->GetSpacing()[i];
1545
1546     iLocalExtents[i*2  ] = lrint(corner1[i]);
1547     iLocalExtents[i*2+1] = lrint(corner2[i]);
1548
1549     if(iLocalExtents[i*2  ]>iLocalExtents[i*2+1])
1550       std::swap(iLocalExtents[i*2], iLocalExtents[i*2+1]);
1551
1552 #if VTK_MAJOR_VERSION > 5
1553     for(int j=0;j<2; j++) {
1554       if(iLocalExtents[i*2+j]< mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT())[2*i])
1555         iLocalExtents[i*2+j] = mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT())[2*i];
1556
1557       if(iLocalExtents[i*2+j]> mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT())[2*i+1])
1558         iLocalExtents[i*2+j] = mImageReslice->GetInputInformation()->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT())[2*i+1];
1559     }
1560 #endif
1561   }
1562
1563   vtkSmartPointer<vtkExtractVOI> voiFilter = vtkSmartPointer<vtkExtractVOI>::New();
1564 #if VTK_MAJOR_VERSION <= 5
1565   voiFilter->SetInput(image);
1566 #else
1567   voiFilter->SetInputData(image);
1568 #endif
1569   voiFilter->SetVOI(iLocalExtents);
1570   voiFilter->Update();
1571   if (!voiFilter->GetOutput()->GetNumberOfPoints()) {
1572     min = 0;
1573     max = 0;
1574     return;
1575   }
1576
1577   vtkSmartPointer<vtkImageAccumulate> accFilter = vtkSmartPointer<vtkImageAccumulate>::New();
1578 #if VTK_MAJOR_VERSION <= 5
1579   accFilter->SetInput(voiFilter->GetOutput());
1580 #else
1581   accFilter->SetInputConnection(voiFilter->GetOutputPort(0));
1582 #endif
1583   accFilter->Update();
1584
1585   min = *(accFilter->GetMin());
1586   max = *(accFilter->GetMax());
1587 }
1588 //----------------------------------------------------------------------------
1589
1590 //----------------------------------------------------------------------------
1591 double vvSlicer::GetScalarComponentAsDouble(vtkImageData *image, double X, double Y, double Z, int &ix, int &iy, int &iz, int component)
1592
1593   ix = lrint(X);
1594   iy = lrint(Y);
1595   iz = lrint(Z);
1596 #if VTK_MAJOR_VERSION <= 5
1597   if (ix < image->GetWholeExtent()[0] ||
1598       ix > image->GetWholeExtent()[1] ||
1599       iy < image->GetWholeExtent()[2] ||
1600       iy > image->GetWholeExtent()[3] ||
1601       iz < image->GetWholeExtent()[4] ||
1602       iz > image->GetWholeExtent()[5] )
1603     return std::numeric_limits<double>::quiet_NaN();
1604   image->SetUpdateExtent(ix, ix, iy, iy, iz, iz);
1605   image->Update();
1606 #else
1607   if (ix < image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[0] ||
1608       ix > image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[1] ||
1609       iy < image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[2] ||
1610       iy > image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[3] ||
1611       iz < image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[4] ||
1612       iz > image->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[5] )
1613     return std::numeric_limits<double>::quiet_NaN();
1614   //image->SetUpdateExtent(ix, ix, iy, iy, iz, iz);
1615   //image->Update();
1616 #endif
1617
1618   return image->GetScalarComponentAsDouble(ix, iy, iz, component);
1619 }
1620 //----------------------------------------------------------------------------
1621
1622 //----------------------------------------------------------------------------
1623 void vvSlicer::Render()
1624
1625   if (this->mFusion && mFusionActor->GetVisibility() && showFusionLegend) {
1626     legend->SetLookupTable(this->GetFusionMapper()->GetLookupTable());
1627     legend->UseOpacityOn();
1628     legend->SetVisibility(1);
1629   }
1630   else if (this->GetWindowLevel()->GetLookupTable() && !this->mOverlay)  {
1631     legend->SetLookupTable(this->GetWindowLevel()->GetLookupTable());
1632     legend->UseOpacityOff();
1633     legend->SetVisibility(1);
1634   } else legend->SetVisibility(0);
1635
1636   if (ca->GetVisibility()) {
1637
1638     std::stringstream worldPos(" ");
1639     double pt[3];
1640     mConcatenatedTransform->TransformPoint(mCurrent, pt);
1641     double X = (pt[0] - mImage->GetVTKImages()[mCurrentTSlice]->GetOrigin()[0])/mImage->GetVTKImages()[mCurrentTSlice]->GetSpacing()[0];
1642     double Y = (pt[1] - mImage->GetVTKImages()[mCurrentTSlice]->GetOrigin()[1])/mImage->GetVTKImages()[mCurrentTSlice]->GetSpacing()[1];
1643     double Z = (pt[2] - mImage->GetVTKImages()[mCurrentTSlice]->GetOrigin()[2])/mImage->GetVTKImages()[mCurrentTSlice]->GetSpacing()[2];
1644 #if VTK_MAJOR_VERSION <= 5
1645     if (X >= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[0]-0.5 &&
1646         X <= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[1]+0.5 &&
1647         Y >= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[2]-0.5 &&
1648         Y <= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[3]+0.5 &&
1649         Z >= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[4]-0.5 &&
1650         Z <= mImage->GetVTKImages()[mCurrentTSlice]->GetWholeExtent()[5]+0.5) {
1651
1652       
1653       int ix, iy, iz;
1654       double value = this->GetScalarComponentAsDouble(mImage->GetVTKImages()[mCurrentTSlice], X, Y, Z, ix, iy, iz);
1655
1656       if(ImageActor->GetVisibility())
1657         worldPos << "data value : " << value << std::endl;
1658
1659       worldPos << "mm : " << lrint(mCurrentBeforeSlicingTransform[0]) << ' '
1660                           << lrint(mCurrentBeforeSlicingTransform[1]) << ' '
1661                           << lrint(mCurrentBeforeSlicingTransform[2]) << ' '
1662                           << mCurrentTSlice
1663                           << std::endl;
1664       worldPos << "pixel : " << ix << ' '
1665                              << iy << ' '
1666                              << iz << ' '
1667                              << mCurrentTSlice
1668                              << std::endl;
1669     }
1670 #else
1671     if (X >= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[0]-0.5 &&
1672         X <= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[1]+0.5 &&
1673         Y >= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[2]-0.5 &&
1674         Y <= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[3]+0.5 &&
1675         Z >= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[4]-0.5 &&
1676         Z <= mImage->GetVTKImages()[mCurrentTSlice]->GetInformation()->Get(vtkDataObject::DATA_EXTENT())[5]+0.5) {
1677
1678       int ix, iy, iz;
1679       double value = this->GetScalarComponentAsDouble(mImage->GetVTKImages()[mCurrentTSlice], X, Y, Z, ix, iy, iz);
1680
1681       if(ImageActor->GetVisibility())
1682         worldPos << "data value : " << value << std::endl;
1683
1684       worldPos << "mm : " << lrint(mCurrentBeforeSlicingTransform[0]) << ' '
1685                           << lrint(mCurrentBeforeSlicingTransform[1]) << ' '
1686                           << lrint(mCurrentBeforeSlicingTransform[2]) << ' '
1687                           << mCurrentTSlice
1688                           << std::endl;
1689       worldPos << "pixel : " << ix << ' '
1690                              << iy << ' '
1691                              << iz << ' '
1692                              << mCurrentTSlice
1693                              << std::endl;
1694     
1695     }
1696 #endif
1697     ca->SetText(1,worldPos.str().c_str());
1698
1699     std::stringstream slicePos;
1700     slicePos << "Slice: " << this->GetSlice();
1701     ca->SetText(2, slicePos.str().c_str());
1702   }
1703
1704   if (pdmA->GetVisibility()) {
1705     double x = mCursor[0];
1706     double y = mCursor[1];
1707     double z = mCursor[2];
1708     double xCursor = (x - this->GetInput()->GetOrigin()[0])/this->GetInput()->GetSpacing()[0];
1709     double yCursor = (y - this->GetInput()->GetOrigin()[1])/this->GetInput()->GetSpacing()[1];
1710     double zCursor = (z - this->GetInput()->GetOrigin()[2])/this->GetInput()->GetSpacing()[2];
1711 #if VTK_MAJOR_VERSION <= 5    
1712     if (xCursor >= this->GetImageActor()->GetDisplayExtent()[0]-0.5 &&
1713         xCursor < this->GetImageActor()->GetDisplayExtent()[1]+0.5 &&
1714         yCursor >= this->GetImageActor()->GetDisplayExtent()[2]-0.5 &&
1715         yCursor < this->GetImageActor()->GetDisplayExtent()[3]+0.5 &&
1716         zCursor >= this->GetImageActor()->GetDisplayExtent()[4]-0.5 &&
1717         zCursor < this->GetImageActor()->GetDisplayExtent()[5]+0.5 ) {
1718       vtkRenderer * renderer = this->Renderer;
1719
1720       renderer->WorldToView(x,y,z);
1721       renderer->ViewToNormalizedViewport(x,y,z);
1722       renderer->NormalizedViewportToViewport(x,y);
1723       renderer->ViewportToNormalizedDisplay(x,y);
1724       renderer->NormalizedDisplayToDisplay(x,y);
1725       crossCursor->SetFocalPoint(x,y,z);
1726     } else
1727       crossCursor->SetFocalPoint(-1,-1,z);
1728     crossCursor->Update();
1729   }
1730 #else
1731     vtkSmartPointer<vtkOpenGLImageSliceMapper> mapperOpenGL= vtkSmartPointer<vtkOpenGLImageSliceMapper>::New();
1732     try {
1733         mapperOpenGL = dynamic_cast<vtkOpenGLImageSliceMapper*>(GetImageActor()->GetMapper());
1734     } catch (const std::bad_cast& e) {
1735                 std::cerr << e.what() << std::endl;
1736                 std::cerr << "Conversion error" << std::endl;
1737                 return;
1738         }
1739
1740     if (xCursor >= mapperOpenGL->GetCroppingRegion()[0]-0.5 &&
1741         xCursor < mapperOpenGL->GetCroppingRegion()[1]+0.5 &&
1742         yCursor >= mapperOpenGL->GetCroppingRegion()[2]-0.5 &&
1743         yCursor < mapperOpenGL->GetCroppingRegion()[3]+0.5 &&
1744         zCursor >= mapperOpenGL->GetCroppingRegion()[4]-0.5 &&
1745         zCursor < mapperOpenGL->GetCroppingRegion()[5]+0.5 ) {
1746       vtkRenderer * renderer = this->Renderer;
1747
1748       renderer->WorldToView(x,y,z);
1749       renderer->ViewToNormalizedViewport(x,y,z);
1750       renderer->NormalizedViewportToViewport(x,y);
1751       renderer->ViewportToNormalizedDisplay(x,y);
1752       renderer->NormalizedDisplayToDisplay(x,y);
1753       crossCursor->SetFocalPoint(x,y,z);
1754     } else
1755       crossCursor->SetFocalPoint(-1,-1,z);
1756     crossCursor->Update();
1757   }
1758 #endif
1759
1760   if (mOverlay && mOverlayActor->GetVisibility()) {
1761     if(mLinkOverlayWindowLevel) {
1762       mOverlayMapper->SetWindow(this->GetColorWindow());
1763       mOverlayMapper->SetLevel(this->GetColorLevel());
1764     }
1765 #if VTK_MAJOR_VERSION <= 5
1766     mOverlayMapper->GetOutput()->SetUpdateExtent(mOverlayActor->GetDisplayExtent());
1767 #else
1768     mOverlayMapper->SetUpdateExtent(mOverlayActor->GetDisplayExtent());
1769 #endif
1770     mOverlayMapper->Update();
1771   }
1772   if (mFusion && mFusionActor->GetVisibility()) {
1773 #if VTK_MAJOR_VERSION <= 5
1774     mFusionMapper->GetOutput()->SetUpdateExtent(mFusionActor->GetDisplayExtent());
1775 #else
1776     mFusionMapper->SetUpdateExtent(mFusionActor->GetDisplayExtent());
1777 #endif
1778     mFusionMapper->Update();
1779   }
1780   if (mLandMapper) {
1781     RemoveLandmarks();
1782     DisplayLandmarks();
1783   }
1784
1785     this->GetRenderWindow()->Render();
1786 }
1787 //----------------------------------------------------------------------------
1788
1789
1790 //----------------------------------------------------------------------------
1791 void vvSlicer::UpdateCursorPosition()
1792
1793   pdmA->SetVisibility(true);
1794   mCursor[0] = mCurrent[0];
1795   mCursor[1] = mCurrent[1];
1796   mCursor[2] = mCurrent[2];
1797   mCursor[3] = mCurrentTSlice;
1798 }
1799 //----------------------------------------------------------------------------
1800
1801
1802 //----------------------------------------------------------------------------
1803 void vvSlicer::RemoveLandmarks()
1804
1805   vtkPolyData *pd = static_cast<vtkPolyData*>(mLandClipper->GetInput());
1806   if (pd->GetPoints()) {
1807
1808     //First remove all captions:
1809     for(unsigned int i=0;i<mLandLabelActors.size();i++) {
1810         this->Renderer->RemoveActor2D(mLandLabelActors[i]);
1811         //allActors2D->Remove (mLandLabelActors[i]);
1812     }
1813     mLandLabelActors.clear();
1814   }
1815 }
1816 //----------------------------------------------------------------------------
1817
1818
1819 //----------------------------------------------------------------------------
1820 void vvSlicer::DisplayLandmarks()
1821
1822
1823   double bounds [6];
1824   for(unsigned int i=0; i<6; i++)
1825     bounds[i] = ImageActor->GetBounds()[i];
1826   bounds[ this->SliceOrientation*2   ] = ImageActor->GetBounds()[ this->SliceOrientation*2  ]-fabs(this->GetInput()->GetSpacing()[this->SliceOrientation]);
1827   bounds[ this->SliceOrientation*2+1 ] = ImageActor->GetBounds()[ this->SliceOrientation*2+1 ]+fabs(this->GetInput()->GetSpacing()[this->SliceOrientation]);
1828   mClipBox->SetBounds(bounds);
1829
1830
1831   vtkPolyData *pd = static_cast<vtkPolyData*>(mLandClipper->GetInput());
1832   if (pd->GetPoints()) {
1833     //mLandGlyph->SetRange(0,1);
1834     //mLandGlyph->Modified();
1835     //mLandGlyph->Update();
1836
1837     mClipBox->Modified();
1838     mLandClipper->Update();
1839     mLandMapper->Update();
1840     //Next add the captions to the displayed points
1841     for (vtkIdType id=0; id<mLandClipper->GetOutput()->GetNumberOfPoints(); id++) {
1842           double *position = mLandClipper->GetOutput()->GetPoint(id);
1843       vtkStdString label = static_cast<vtkStringArray*>(mLandClipper->GetOutput()->GetPointData()->GetAbstractArray("labels"))->GetValue(id);
1844       vtkSmartPointer<vtkCaptionActor2D> label_actor = vtkSmartPointer<vtkCaptionActor2D>::New();
1845       label_actor->SetCaption(label);
1846       label_actor->SetAttachmentPoint(position);
1847       label_actor->GetCaptionTextProperty()->SetColor(1,0,0);
1848       label_actor->GetCaptionTextProperty()->SetOrientation(33.333333);
1849       label_actor->GetCaptionTextProperty()->SetFontFamilyToTimes();
1850       label_actor->GetCaptionTextProperty()->SetBold(0);
1851       label_actor->GetCaptionTextProperty()->SetFontSize(6);
1852       label_actor->BorderOff();
1853       label_actor->LeaderOff();
1854       label_actor->ThreeDimensionalLeaderOff();
1855       mLandLabelActors.push_back(label_actor);
1856       this->Renderer->AddActor2D(mLandLabelActors[id]);
1857      }
1858   }
1859
1860 }
1861 //----------------------------------------------------------------------------
1862
1863
1864 //----------------------------------------------------------------------------
1865 void vvSlicer::SetSlice(int slice)
1866
1867   int *range = this->GetSliceRange();
1868   if (range) {
1869     if (slice < range[0]) {
1870       slice = range[0];
1871     } else if (slice > range[1]) {
1872       slice = range[1];
1873     }
1874   }
1875
1876   if (this->Slice == slice) {
1877     return;
1878   }
1879
1880   this->Slice = slice;
1881   SetContourSlice();
1882   this->Modified();
1883   this->UpdateDisplayExtent();
1884
1885   // Seems to work without this line
1886   //this->Render();
1887 }
1888 //----------------------------------------------------------------------------
1889
1890 //----------------------------------------------------------------------------
1891 int vvSlicer::GetTMax() 
1892
1893   int tmax = (int)mImage->GetVTKImages().size() - 1;
1894   if(mOverlay)
1895     tmax = std::max(tmax, (int)mOverlay->GetVTKImages().size()-1);
1896   return tmax;
1897 }
1898 //----------------------------------------------------------------------------
1899
1900 //----------------------------------------------------------------------------
1901 void vvSlicer::SetContourSlice()
1902
1903   if (mSurfaceCutActors.size() > 0)
1904     for (std::vector<vvMeshActor*>::iterator i=mSurfaceCutActors.begin();
1905          i!=mSurfaceCutActors.end(); i++) {
1906          
1907       (*i)->SetSlicingOrientation(this->SliceOrientation);
1908       (*i)->SetCutSlice((this->Slice)*this->GetImage()->GetSpacing()[this->SliceOrientation]+
1909                         this->GetImage()->GetOrigin()[this->SliceOrientation]);
1910     }
1911 }
1912 //----------------------------------------------------------------------------
1913
1914
1915 //----------------------------------------------------------------------------
1916 void vvSlicer::ForceUpdateDisplayExtent()
1917
1918   this->UpdateDisplayExtent();
1919 }
1920 //----------------------------------------------------------------------------
1921
1922
1923 //----------------------------------------------------------------------------
1924 int* vvSlicer::GetDisplayExtent()
1925
1926   return this->GetImageActor()->GetDisplayExtent();
1927 }
1928 //----------------------------------------------------------------------------
1929
1930
1931 //----------------------------------------------------------------------------
1932 void vvSlicer::PrintSelf(ostream& os, vtkIndent indent)
1933
1934   this->Superclass::PrintSelf(os, indent);
1935 }
1936 //----------------------------------------------------------------------------
1937
1938
1939 //----------------------------------------------------------------------------
1940 void vvSlicer::SetVFColor(double r, double g, double b)
1941
1942   double mVFColorHSV[3];
1943   mVFColor[0] = r;
1944   mVFColor[1] = g;
1945   mVFColor[2] = b;
1946
1947   vtkMath::RGBToHSV(mVFColor, mVFColorHSV);
1948   mVFColorLUT->SetHueRange(mVFColorHSV[0], mVFColorHSV[0]);
1949   mVFColorLUT->SetSaturationRange(mVFColorHSV[1],mVFColorHSV[1]);
1950   mVFColorLUT->SetValueRange(mVFColorHSV[2], mVFColorHSV[2]);
1951
1952   this->Render();
1953 }  
1954 //----------------------------------------------------------------------------
1955
1956
1957 //----------------------------------------------------------------------------
1958 void vvSlicer::SetRegisterExtent(int ext[6])
1959
1960     copyExtent(ext, mRegisterExtent);
1961 }
1962 //----------------------------------------------------------------------------
1963
1964
1965 //----------------------------------------------------------------------------
1966 void vvSlicer::GetRegisterExtent(int ext[6])
1967
1968     copyExtent(mRegisterExtent, ext);
1969 }
1970 //----------------------------------------------------------------------------
1971