X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2FImageMPR%2FImageMPR.cxx;h=6c7e11918031325cbc9fbc1e3975495227129caf;hb=d6f15d4cb764982e2b09060a9c0f38636891590c;hp=47c3622e4e7430af2663940ea6a32de22d1e7de2;hpb=a02d2e4b730e0a8c7709856c9c47eb7ad19edda0;p=cpPlugins.git diff --git a/appli/ImageMPR/ImageMPR.cxx b/appli/ImageMPR/ImageMPR.cxx index 47c3622..6c7e119 100644 --- a/appli/ImageMPR/ImageMPR.cxx +++ b/appli/ImageMPR/ImageMPR.cxx @@ -19,6 +19,7 @@ ImageMPR( QWidget* parent ) { this->m_UI->setupUi( this ); this->m_Plugins->SetWidget( this ); + this->m_Plugins->SetApplication( this ); // Connect actions ImageMPR_ConnectAction( OpenImage ); @@ -33,8 +34,17 @@ ImageMPR( QWidget* parent ) ImageMPR_ConnectAction( LoadPlugins ); ImageMPR_ConnectAction( ShowPlugins ); - // Try to load default plugins + // Associate model with view + for( unsigned int i = 0; i < 4; ++i ) + this->m_Plugins->AddInteractor( this->m_UI->MPR->GetInteractor( i ) ); + + // Try to load default plugins +#ifdef WIN32 + this->m_Plugins->LoadPlugins( "cpPluginsIO.dll" ); + this->m_Plugins->LoadPlugins( "cpPluginsBasicFilters.dll" ); +#else this->m_Plugins->LoadPluginsConfigurationFile( "Plugins.cfg" ); +#endif this->m_Plugins->AssociatePluginsToMenu( this->m_UI->MenuFilters, this, SLOT( _execPlugin( ) ) ); @@ -50,22 +60,80 @@ ImageMPR:: // ------------------------------------------------------------------------- void ImageMPR:: -_aOpenImage( ) +UpdateActualFilter( ) { - // Clear all, since we are loading the main image - if( this->m_Objects.size( ) > 0 ) + if( !( this->m_Plugins->HasActiveFilter( ) ) ) + return; + + std::vector< std::string > outputs; + std::string err = this->m_Plugins->UpdateActiveFilter( outputs ); + if( err == "" ) + { + for( auto oIt = outputs.begin( ); oIt != outputs.end( ); ++oIt ) + { + TPlugins::TImage* image = this->m_Plugins->GetImage( *oIt ); + if( image != NULL ) + { + vtkImageData* vimage = image->GetVTK< vtkImageData >( ); + if( vimage != NULL ) + { + this->m_UI->MPR->AddImage( + vimage, *oIt, this->m_Plugins->GetParent( *oIt ) + ); + this->m_UI->MPR->ShowData( *oIt ); + + } // fi + continue; + + } // fi + + TPlugins::TMesh* mesh = this->m_Plugins->GetMesh( *oIt ); + if( mesh != NULL ) + { + this->m_Plugins->BlockWidget( ); + this->m_UI->MPR->AddMesh( + mesh->GetVTK< vtkPolyData >( ), + *oIt, + this->m_Plugins->GetParent( *oIt ) + ); + this->m_UI->MPR->ShowData( *oIt ); + this->m_Plugins->UnblockWidget( ); + + } // fi + + } // rof + } + else { - this->m_UI->MPR->ClearAll( ); - this->m_Objects.clear( ); + QMessageBox::critical( + this, + tr( "Error executing filter" ), + tr( ( std::string( "Error caught: " ) + err ).c_str( ) ) + ); + return; } // fi +} - // Read and show image, if possible - TPlugins::TImage::Pointer image; - if( this->m_Plugins->ReadImage( image, true ) ) +// ------------------------------------------------------------------------- +void ImageMPR:: +_aOpenImage( ) +{ + std::string name = this->m_Plugins->ReadImage( "" ); + if( name != "" ) { + // Since we are opening an image, clear view + this->m_UI->MPR->DeleteAllData( ); + + // Prepare visualization + TPlugins::TImage* image = this->m_Plugins->GetImage( name ); vtkImageData* vimage = image->GetVTK< vtkImageData >( ); - if( vimage == NULL ) + if( vimage != NULL ) + { + this->m_UI->MPR->AddImage( vimage, name ); + this->m_UI->MPR->ShowData( name ); + } + else QMessageBox::critical( this, QMessageBox::tr( "Error showing image." ), @@ -73,12 +141,6 @@ _aOpenImage( ) "Image was read, but no valid VTK conversion was found." ) ); - else - this->m_UI->MPR->ShowImage( vimage, image->GetName( ) ); - - // Keep a track on a local data tree - this->m_Objects[ image->GetName( ) ] = - TTreeNode( "", image.GetPointer( ) ); } // fi } @@ -87,20 +149,21 @@ _aOpenImage( ) void ImageMPR:: _aOpenDICOMSeries( ) { - // Clear all, since we are loading the main image - if( this->m_Objects.size( ) > 0 ) + std::string name = this->m_Plugins->ReadDicomSeries( "" ); + if( name != "" ) { - this->m_UI->MPR->ClearAll( ); - this->m_Objects.clear( ); - - } // fi + // Since we are opening an image, clear view + this->m_UI->MPR->DeleteAllData( ); - // Read and show image, if possible - TPlugins::TImage::Pointer image; - if( this->m_Plugins->ReadDicomSeries( image ) ) - { + // Prepare visualization + TPlugins::TImage* image = this->m_Plugins->GetImage( name ); vtkImageData* vimage = image->GetVTK< vtkImageData >( ); - if( vimage == NULL ) + if( vimage != NULL ) + { + this->m_UI->MPR->AddImage( vimage, name ); + this->m_UI->MPR->ShowData( name ); + } + else QMessageBox::critical( this, QMessageBox::tr( "Error showing image." ), @@ -108,12 +171,6 @@ _aOpenDICOMSeries( ) "Image was read, but no valid VTK conversion was found." ) ); - else - this->m_UI->MPR->ShowImage( vimage, image->GetName( ) ); - - // Keep a track on a local data tree - this->m_Objects[ image->GetName( ) ] = - TTreeNode( "", image.GetPointer( ) ); } // fi } @@ -138,10 +195,8 @@ _aOpenPolyData( ) void ImageMPR:: _aSaveImage( ) { - /* - if( this->m_MainImage.IsNotNull( ) ) - this->m_Plugins->WriteImage( this->m_MainImage, true ); - */ + std::string data_name = this->m_UI->MPR->GetSelectedData( ); + this->m_Plugins->WriteImage( data_name ); } // ------------------------------------------------------------------------- @@ -188,14 +243,7 @@ _aShowPlugins( ) void ImageMPR:: _execPlugin( ) { - /* - typedef std::map< std::string, TPlugins::TImage::Pointer > _TImages; - typedef std::map< std::string, TPlugins::TMesh::Pointer > _TMeshes; - - // Get selected data - // std::string data_name = this->m_UI->MPR->GetSelectedData( ); - - // Get filter name + // Get filter's name and category QAction* action = dynamic_cast< QAction* >( this->sender( ) ); if( action == NULL ) return; @@ -205,176 +253,54 @@ _execPlugin( ) std::string filter_cate = menu->title( ).toStdString( ); std::string filter_name = action->text( ).toStdString( ); - // Create filter - TPlugins::TProcessObject::Pointer filter; - if( !( this->m_Plugins->CreateFilter( filter, filter_name ) ) ) - { - QMessageBox::critical( - this, - tr( "Error creating filter" ), - tr( ( - std::string( "No valid filter \"" ) + - filter_name + - std::string( "\"defined." ) - ).c_str( ) ) - ); + // Activate filter + if( !( this->m_Plugins->ActivateFilter( filter_name ) ) ) return; - } // fi - - // Assign inputs - std::vector< std::string > inputs_names = filter->GetInputsNames( ); - if( inputs_names.size( ) == 1 ) + // Associate inputs + std::vector< std::string > inputs = + this->m_Plugins->GetActiveFilterInputsNames( ); + if( inputs.size( ) == 1 ) { - std::string data_name = this->m_UI->MPR->GetSelectedData( ); - _TImages::iterator iIt = this->m_Images.find( data_name ); - _TImages::iterator mIt = this->m_Meshes.find( data_name ); - filter->SetInput( inputs_names[ 0 ]); + std::string data_name = this->m_UI->MPR->GetSelectedData( ); + this->m_Plugins->ConnectInputInActiveFilter( data_name, inputs[ 0 ] ); } - else if( inputs_names.size( ) > 1 ) + else if( inputs.size( ) > 1 ) { - } // fi - - // Get outputs - std::vector< std::string > outputs_names = filter->GetOutputsNames( ); - */ - - /* - - // Choose inputs - if( filter_cate == "ImageToMeshFilter" ) - { - // Check inputs - _TImages::iterator iIt = this->m_Images.find( data_name ); - if( iIt == this->m_Images.end( ) ) - { - QMessageBox::critical( - this, - tr( "Error creating filter" ), - tr( "No valid input selected." ) - ); - return; - - } // fi - - // Execute configuration dialog - if( !( filter->ExecConfigurationDialog( this ) ) ) - return; - - // Execute filter - filter->SetInput( "Input", iIt->second ); - this->_Block( ); - std::string filter_err = filter->Update( ); - this->_Unblock( ); - if( filter_err != "" ) - { - QMessageBox::critical( - this, - tr( "Error executing" ), - tr( filter_err.c_str( ) ) - ); - return; - - } // fi - - // Keep and show results - TPlugins::TMesh::Pointer mesh = - filter->GetOutput< TPlugins::TMesh >( "Output" ); - this->m_Meshes[ filter_name ] = mesh; - this->_Block( ); - this->m_UI->MPR->ShowMesh( - mesh->GetVTK< vtkPolyData >( ), - filter_name, - data_name + QMessageBox::critical( + this, + tr( "Error executing" ), + tr( "Filter has multiple inputs: NOT YET IMPLEMENTED!!!" ) ); - this->_Unblock( ); + return; } // fi - */ - /* - if( this->m_Plugins->CreateFilter( filter, name ) ) - { - if( filter->ExecConfigurationDialog( this ) ) - { - filter->SetInput( "Input", this->m_MainImage ); - this->_Block( ); - err = filter->Update( ); - this->_Unblock( ); - TPlugins::TMesh::Pointer mesh = - filter->GetOutput< TPlugins::TMesh >( "Output" ); - this->m_Meshes.push_back( mesh ); - mesh->CreateVTKActor( ); - vtkActor* actor = mesh->GetVTKActor( ); - if( actor != NULL ) - this->m_UI->MPR->Add3DActor( actor ); + // Associate outputs + std::vector< std::string > outputs = + this->m_Plugins->GetActiveFilterOutputsNames( ); + for( auto oIt = outputs.begin( ); oIt != outputs.end( ); ++oIt ) + this->m_Plugins->SetOutputNameInActiveFilter( + filter_name + "_" + *oIt, *oIt + ); - } // fi - - } // fi - } - else - QMessageBox::critical( - this, - tr( "Error creating filter" ), - tr( "No valid filter defined." ) - ); - */ - /* - if( name == "cpPlugins::BasicFilters::FloodFillImageFilter" ) - { - this->m_Flooding = true; - } - else - { - this->m_Flooding = false; - this->m_UI->MPR->ExecuteFilter( - name, this->m_ImageLoaded, "SegmentedImage" - ); - - } // fi - */ - // Configure filter - /* - TPluginFilter::Pointer filter = - this->m_Plugins.CreateProcessObject( name ); - bool dlg_ok = filter->ExecConfigurationDialog( NULL ); - if( !dlg_ok ) + TPlugins::TProcessObject::DialogResult dlg_res = + this->m_Plugins->ConfigureActiveFilter( ); + if( dlg_res == TPlugins::TProcessObject::DialogResult_Cancel ) + { + this->m_Plugins->DeactivateFilter( ); return; - // Execute filter - QApplication::setOverrideCursor( Qt::WaitCursor ); - this->setEnabled( false ); - filter->SetInput( 0, this->m_Image ); - std::string err = filter->Update( ); - QApplication::restoreOverrideCursor( ); - this->setEnabled( true ); + } // fi - // Update image - if( err == "" ) - { - TPluginImage* result = filter->GetOutput< TPluginImage >( 0 ); - result->DisconnectPipeline( ); - this->m_Image = result; - if( this->m_Image.IsNotNull( ) ) - this->m_MPRObjects->SetImage( - this->m_Image->GetVTK< vtkImageData >( ) - ); - MementoState(this->m_state, this->m_Image); - this->m_state++; - if (this->m_state > this->m_max_state) - { - this->m_max_state = this->m_state; - } - } - else - QMessageBox::critical( - this, - tr( "Error executing filter" ), - tr( err.c_str( ) ) - ); - */ + // Execute filter and associate outputs + if( dlg_res == TPlugins::TProcessObject::DialogResult_NoModal ) + { + this->UpdateActualFilter( ); + this->m_Plugins->DeactivateFilter( ); + + } // fi } // -------------------------------------------------------------------------