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