CustusX  15.3.4-beta
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxImageMapperMonitor.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 #include "cxImageMapperMonitor.h"
34 
35 #include <vector>
36 #include <vtkPlane.h>
37 #include <vtkVolume.h>
38 #include <vtkAbstractVolumeMapper.h>
39 #include <vtkPlaneCollection.h>
40 #include <vtkVolumeMapper.h>
41 
42 #include "cxImage.h"
43 
44 
45 namespace cx
46 {
47 
49 {
50  ImageMapperMonitorPtr retval(new ImageMapperMonitor(volume, image));
51  retval->init(); // contains virtual functions
52  return retval;
53 }
54 
55 ImageMapperMonitor::ImageMapperMonitor(vtkVolumePtr volume, ImagePtr image) : mVolume(volume), mImage(image)
56 {
57  if (!mImage)
58  return;
59  connect(mImage.get(), SIGNAL(clipPlanesChanged()), this, SLOT(clipPlanesChangedSlot()));
60  connect(mImage.get(), SIGNAL(cropBoxChanged()), this, SLOT(applyCropping()));
61 }
62 
64 {
65  this->applyClipping();
66  this->applyCropping();
67 }
68 
70 {
71  this->clearClipping();
72 }
73 
74 void ImageMapperMonitor::clipPlanesChangedSlot()
75 {
76 // this->clearClipping();
77  this->applyClipping();
78 }
79 
81 {
82  if (!mImage)
83  return;
84 
85  for (unsigned i=0; i<mPlanes.size(); ++i)
86  {
87  mVolume->GetMapper()->RemoveClippingPlane(mPlanes[i]);
88  }
89  mPlanes.clear();
90 }
91 
93 {
94  this->clearClipping();
95 
96  if (!mImage)
97  return;
98 
99  mPlanes = mImage->getAllClipPlanes();
100  for (unsigned i=0; i<mPlanes.size(); ++i)
101  {
102  mVolume->GetMapper()->AddClippingPlane(mPlanes[i]);
103  }
104 }
105 
106 vtkVolumeMapperPtr ImageMapperMonitor::getMapper()
107 {
108  vtkVolumeMapperPtr mapper = dynamic_cast<vtkVolumeMapper*>(mVolume->GetMapper());
109  return mapper;
110 }
111 
113 {
114  if (!mImage)
115  return;
116 
117  vtkVolumeMapperPtr mapper = this->getMapper();
118  if (!mapper)
119  return;
120  mapper->SetCropping(mImage->getCropping());
121 
122  DoubleBoundingBox3D bb_d = mImage->getCroppingBox();
123 
124  mapper->SetCroppingRegionPlanes(bb_d.begin());
125  mapper->Update();
126 }
127 
128 } // namespace cx
vtkSmartPointer< class vtkVolume > vtkVolumePtr
static ImageMapperMonitorPtr create(vtkVolumePtr volume, ImagePtr image)
boost::shared_ptr< class Image > ImagePtr
Definition: cxDicomWidget.h:48
boost::shared_ptr< class ImageMapperMonitor > ImageMapperMonitorPtr
vtkSmartPointer< class vtkVolumeMapper > vtkVolumeMapperPtr
Representation of a floating-point bounding box in 3D. The data are stored as {xmin,xmax,ymin,ymax,zmin,zmax}, in order to simplify communication with vtk.
ImageMapperMonitor(vtkVolumePtr volume, ImagePtr image)