]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/BasicFilters/MacheteFilter.cxx
8116e211ff32895d1e5f6cf2a860de75381fede9
[cpPlugins.git] / lib / cpPlugins / Plugins / BasicFilters / MacheteFilter.cxx
1 #include "MacheteFilter.h"
2
3 #include <cpPlugins/Interface/BaseApplication.h>
4 #include <cpPlugins/Interface/Plugins.h>
5
6 #include <cpPlugins/Interface/DataObject.h>
7 #include <cpPlugins/Interface/Image.h>
8 #include <cpPlugins/Interface/Mesh.h>
9
10 #include <cpExtensions/Interaction/ImageInteractorStyle.h>
11 #include <cpExtensions/DataStructures/InfinitePlaneSpatialObject.h>
12 #include <cpExtensions/Algorithms/SpatialObjectMaskImageFilter.h>
13
14 #include <itkPlaneSpatialObject.h>
15 #include <itkPoint.h>
16 #include <itkVector.h>
17
18 #include <vtkInteractorStyleSwitch.h>
19 #include <vtkPlaneWidget.h>
20 #include <vtkRenderWindowInteractor.h>
21
22 #ifdef cpPlugins_Interface_QT4
23 #include <QDialogButtonBox>
24
25 // -------------------------------------------------------------------------
26 cpPlugins::BasicFilters::MacheteFilter_Dialog::
27 MacheteFilter_Dialog(
28   QWidget* parent, MacheteFilter* filter, Qt::WindowFlags f
29   )
30   : QDialog( parent, f | Qt::WindowStaysOnTopHint ),
31     m_Filter( filter )
32 {
33   this->m_Title = new QLabel( this );
34   this->m_Title->setText( "Execute machete filter" );
35
36   this->m_MainLayout = new QGridLayout( this );
37   this->m_ToolsLayout = new QVBoxLayout( );
38   this->m_ToolsLayout->addWidget( this->m_Title );
39   this->m_MainLayout->addLayout( this->m_ToolsLayout, 0, 0, 1, 1 );
40
41   // Add buttons
42   QDialogButtonBox* bb = new QDialogButtonBox(
43     QDialogButtonBox::Cancel | QDialogButtonBox::Ok
44     );
45   QObject::connect( bb, SIGNAL( accepted( ) ), this, SLOT( accept( ) ) );
46   QObject::connect( bb, SIGNAL( rejected( ) ), this, SLOT( reject( ) ) );
47   this->m_ToolsLayout->addWidget( bb );
48 }
49
50 // -------------------------------------------------------------------------
51 cpPlugins::BasicFilters::MacheteFilter_Dialog::
52 ~MacheteFilter_Dialog( )
53 {
54   delete this->m_Title;
55   delete this->m_ToolsLayout;
56   delete this->m_MainLayout;
57 }
58
59 // -------------------------------------------------------------------------
60 void cpPlugins::BasicFilters::MacheteFilter_Dialog::
61 accept( )
62 {
63   // Get interactive widget
64   if( this->m_Filter == NULL )
65     return;
66   vtkPlaneWidget* wdg = this->m_Filter->m_PlaneWidget;
67   if( wdg == NULL )
68     return;
69
70   // Get/Set plane parameters
71   double center[ 3 ], normal[ 3 ];
72   wdg->GetCenter( center );
73   wdg->GetNormal( normal );
74
75   this->m_Filter->GetParameters( )->SetPoint( "PlaneCenter", 3, center );
76   this->m_Filter->GetParameters( )->SetVector( "PlaneNormal", 3, normal );
77
78   // Update filter
79   auto plugins = this->m_Filter->GetPlugins( );
80   if( plugins != NULL )
81   {
82     auto app = plugins->GetApplication( );
83     if( app != NULL )
84       app->UpdateActualFilter( );
85
86   } // fi
87 }
88
89 // -------------------------------------------------------------------------
90 void cpPlugins::BasicFilters::MacheteFilter_Dialog::
91 reject( )
92 {
93   auto plugins = this->m_Filter->GetPlugins( );
94   if( plugins != NULL )
95     plugins->DeactivateFilter( );
96   this->Superclass::reject( );
97 }
98
99 #endif // cpPlugins_Interface_QT4
100
101 // -------------------------------------------------------------------------
102 cpPlugins::BasicFilters::MacheteFilter::
103 DialogResult cpPlugins::BasicFilters::MacheteFilter::
104 ExecConfigurationDialog( QWidget* parent )
105 {
106 #ifdef cpPlugins_Interface_QT4
107
108   typedef cpExtensions::Interaction::ImageInteractorStyle _TImageStyle;
109
110   // Choose a valid 3D interactor
111   vtkRenderWindowInteractor* iren = NULL;
112   auto iIt = this->m_Interactors.begin( );
113   for( ; iIt != this->m_Interactors.end( ) && iren == NULL; ++iIt )
114   {
115     _TImageStyle* istyle =
116       dynamic_cast< _TImageStyle* >(
117         ( *iIt )->GetInteractorStyle( )
118         );
119     if( istyle == NULL )
120       iren = *iIt;
121     
122   } // rof
123   if( iren == NULL )
124     return( Self::DialogResult_Cancel );
125
126   // Get bounding box
127   double bbox[ 6 ];
128   cpPlugins::Interface::Image* image =
129     this->GetInput< cpPlugins::Interface::Image >( "Input" );
130   bool input_found = false;
131   if( image != NULL )
132   {
133     image->GetVTK< vtkImageData >( )->GetBounds( bbox );
134     input_found = true;
135
136   } // fi
137   cpPlugins::Interface::Mesh* mesh =
138     this->GetInput< cpPlugins::Interface::Mesh >( "Input" );
139   if( mesh != NULL )
140   {
141     mesh->GetVTK< vtkPolyData >( )->GetBounds( bbox );
142     input_found = true;
143
144   } // fi
145   if( !input_found )
146     return( Self::DialogResult_Cancel );
147
148   // Create plane widget
149   if( this->m_PlaneWidget != NULL )
150     this->m_PlaneWidget->Delete( );
151   this->m_PlaneWidget = vtkPlaneWidget::New( );
152   this->m_PlaneWidget->NormalToXAxisOn( );
153   this->m_PlaneWidget->SetCenter(
154     ( bbox[ 1 ] + bbox[ 0 ] ) * double( 0.5 ),
155     ( bbox[ 3 ] + bbox[ 2 ] ) * double( 0.5 ),
156     ( bbox[ 5 ] + bbox[ 4 ] ) * double( 0.5 )
157     );
158   this->m_PlaneWidget->SetOrigin(
159     ( bbox[ 1 ] + bbox[ 0 ] ) * double( 0.5 ),
160     bbox[ 2 ],
161     bbox[ 4 ]
162     );
163   this->m_PlaneWidget->SetPoint1(
164     ( bbox[ 1 ] + bbox[ 0 ] ) * double( 0.5 ),
165     bbox[ 3 ],
166     bbox[ 4 ]
167     );
168   this->m_PlaneWidget->SetPoint2(
169     ( bbox[ 1 ] + bbox[ 0 ] ) * double( 0.5 ),
170     bbox[ 2 ],
171     bbox[ 5 ]
172     );
173   this->m_PlaneWidget->SetResolution( 15 );
174   this->m_PlaneWidget->SetRepresentationToWireframe( );
175   this->m_PlaneWidget->SetInteractor( iren );
176   this->m_PlaneWidget->PlaceWidget( );
177   this->m_PlaneWidget->On( );
178
179   this->m_Dialog = new MacheteFilter_Dialog( NULL, this );
180   this->m_Dialog->show( );
181
182   return( Self::DialogResult_Modal );
183 #else // cpPlugins_Interface_QT4
184   return( Self::DialogResult_Cancel );
185 #endif // cpPlugins_Interface_QT4
186 }
187
188 // -------------------------------------------------------------------------
189 cpPlugins::BasicFilters::MacheteFilter::
190 MacheteFilter( )
191   : Superclass( ),
192     m_PlaneWidget( NULL )
193 {
194   this->_AddInput( "Input" );
195   this->_MakeOutput< cpPlugins::Interface::DataObject >( "PositiveOutput" );
196   this->_MakeOutput< cpPlugins::Interface::DataObject >( "NegativeOutput" );
197
198   this->m_Parameters->ConfigureAsPoint( "PlaneCenter" );
199   this->m_Parameters->ConfigureAsVector( "PlaneNormal" );
200 }
201
202 // -------------------------------------------------------------------------
203 cpPlugins::BasicFilters::MacheteFilter::
204 ~MacheteFilter( )
205 {
206   if( this->m_PlaneWidget != NULL )
207     this->m_PlaneWidget->Delete( );
208 }
209
210 // -------------------------------------------------------------------------
211 std::string cpPlugins::BasicFilters::MacheteFilter::
212 _GenerateData( )
213 {
214   cpPlugins::Interface::Image* image =
215     this->GetInput< cpPlugins::Interface::Image >( "Input" );
216   if( image != NULL )
217     return( this->_FromImage( image ) );
218   cpPlugins::Interface::Mesh* mesh =
219     this->GetInput< cpPlugins::Interface::Mesh >( "Input" );
220   if( mesh == NULL )
221     return( this->_FromMesh( mesh ) );
222   return( "MacheteFilter: No valid input." );
223 }
224
225 // -------------------------------------------------------------------------
226 std::string cpPlugins::BasicFilters::MacheteFilter::
227 _FromImage( cpPlugins::Interface::Image* image )
228 {
229   itk::DataObject* itk_image = NULL;
230   std::string r = "";
231   cpPlugins_Image_Demangle_AllScalarTypes( 2, image, itk_image, r, _RealImage );
232   else cpPlugins_Image_Demangle_AllScalarTypes( 3, image, itk_image, r, _RealImage );
233   else r = "MacheteFilter: Input image type not supported.";
234   return( r );
235 }
236
237 // -------------------------------------------------------------------------
238 std::string cpPlugins::BasicFilters::MacheteFilter::
239 _FromMesh( cpPlugins::Interface::Mesh* mesh )
240 {
241   return( "" );
242 }
243
244 // -------------------------------------------------------------------------
245 template< class I >
246 std::string cpPlugins::BasicFilters::MacheteFilter::
247 _RealImage( itk::DataObject* dobj )
248 {
249   typedef
250     cpExtensions::DataStructures::
251     InfinitePlaneSpatialObject< I::ImageDimension > _TPlane;
252   typedef
253     cpExtensions::Algorithms::
254     SpatialObjectMaskImageFilter< I, I > _TFilter;
255   typedef cpPlugins::Interface::DataObject _TObj;
256   typedef cpPlugins::Interface::Image      _TImage;
257   typedef typename _TPlane::PointType      _TPoint;
258   typedef typename _TPlane::VectorType     _TVector;
259   typedef typename I::PixelType            _TPixel;
260
261   I* image = dynamic_cast< I* >( dobj );
262
263   _TPoint c = this->m_Parameters->GetPoint< _TPoint >(
264     "PlaneCenter", I::ImageDimension
265     );
266   _TVector n = this->m_Parameters->GetVector< _TVector >(
267     "PlaneNormal", I::ImageDimension
268     );
269
270   typename _TPlane::Pointer plane = _TPlane::New( );
271   plane->SetCenter( c );
272   plane->SetNormal( n );
273
274   // Configure filter
275   _TFilter* filter = this->_CreateITK< _TFilter >( );
276   filter->SetInput( image );
277   filter->SetSpatialObject( plane );
278   filter->SetOutsideValue( _TPixel( 0 ) );
279   filter->Update( );
280
281   // Get output names
282   auto pos_name = this->GetOutput< _TObj >( "PositiveOutput" )->GetName( );
283   auto neg_name = this->GetOutput< _TObj >( "NegativeOutput" )->GetName( );
284
285   // Connect outputs (and correct their types and names)
286   _TImage* pos_out = this->GetOutput< _TImage >( "PositiveOutput" );
287   if( pos_out == NULL )
288   {
289     this->_MakeOutput< _TImage >( "PositiveOutput" );
290     pos_out = this->GetOutput< _TImage >( "PositiveOutput" );
291     pos_out->SetName( pos_name );
292
293   } // fi
294   _TImage* neg_out = this->GetOutput< _TImage >( "NegativeOutput" );
295   if( neg_out == NULL )
296   {
297     this->_MakeOutput< _TImage >( "NegativeOutput" );
298     neg_out = this->GetOutput< _TImage >( "NegativeOutput" );
299     neg_out->SetName( neg_name );
300
301   } // fi
302
303   // Assign outputs
304   pos_out->SetITK< I >( filter->GetPositiveOutput( ) );
305   neg_out->SetITK< I >( filter->GetNegativeOutput( ) );
306   return( "" );
307 }
308
309 // eof - $RCSfile$