X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=appli%2FImageMPR%2FImageMPR.cxx;h=ce1f2fc769c7f39232d3902adbb18353cb367936;hb=31e4cf1f3580efa059d3ffad14ba6a15d2372f5c;hp=cc9a01569b7efcaa2d8d926401e628752d4d3314;hpb=8e5fd31fd4d280781d8bc27a799361bf9c30b1d4;p=cpPlugins.git diff --git a/appli/ImageMPR/ImageMPR.cxx b/appli/ImageMPR/ImageMPR.cxx index cc9a015..ce1f2fc 100644 --- a/appli/ImageMPR/ImageMPR.cxx +++ b/appli/ImageMPR/ImageMPR.cxx @@ -1,6 +1,7 @@ #include "ImageMPR.h" #include "ui_ImageMPR.h" +#include #include // ------------------------------------------------------------------------- @@ -14,11 +15,11 @@ ImageMPR:: ImageMPR( QWidget* parent ) : QMainWindow( parent ), - m_UI( new Ui::ImageMPR ), - m_Plugins( new TPlugins ) + m_UI( new Ui::ImageMPR ) { this->m_UI->setupUi( this ); - this->m_Plugins->SetWidget( this ); + this->m_Plugins.SetWidget( this ); + this->m_Plugins.SetApplication( this ); // Connect actions ImageMPR_ConnectAction( OpenImage ); @@ -33,16 +34,19 @@ ImageMPR( QWidget* parent ) ImageMPR_ConnectAction( LoadPlugins ); ImageMPR_ConnectAction( ShowPlugins ); - // 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( ) ) + // 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 + QStringList args = QApplication::arguments( ); + QFileInfo info( args.at( 0 ) ); + this->m_Plugins.LoadPluginsPath( + info.absolutePath( ).toStdString( ), true ); + + // Put loaded plugins into menu + this->_AssociatePluginsToMenu( ); } // ------------------------------------------------------------------------- @@ -50,79 +54,133 @@ ImageMPR:: ~ImageMPR( ) { delete this->m_UI; - delete this->m_Plugins; } // ------------------------------------------------------------------------- void ImageMPR:: -_aOpenImage( ) +UpdateActualFilter( ) { - // Clear all, since we are loading the main image - if( this->m_Objects.size( ) > 0 ) - { - this->m_UI->MPR->ClearAll( ); - this->m_Objects.clear( ); - - } // fi - - // Read and show image, if possible - TPlugins::TImage::Pointer image; - if( this->m_Plugins->ReadImage( image, true ) ) - { - vtkImageData* vimage = image->GetVTK< vtkImageData >( ); - if( vimage == NULL ) - QMessageBox::critical( - this, - QMessageBox::tr( "Error showing image." ), - QMessageBox::tr( - "Image was read, but no valid VTK conversion was found." - ) - ); - else - this->m_UI->MPR->ShowImage( vimage, image->GetName( ) ); + if( !( this->m_Plugins.HasActiveFilter( ) ) ) + return; - // Keep a track on a local data tree - this->m_Objects[ image->GetName( ) ] = - TTreeNode( "", image.GetPointer( ) ); + // Update filter + TPlugins::TStringContainer outputs; + if( + !( + this->m_Plugins.UpdateActiveFilter( + outputs, this->m_ActiveFilterMainInput + ) + ) + ) + return; - } // fi + // Show outputs + for( auto oIt = outputs.begin( ); oIt != outputs.end( ); ++oIt ) + std::cout << *oIt << std::endl; + + /* TODO + 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 + { + QMessageBox::critical( + this, + tr( "Error executing filter" ), + tr( ( std::string( "Error caught: " ) + err ).c_str( ) ) + ); + return; + + } // fi + */ } // ------------------------------------------------------------------------- void ImageMPR:: -_aOpenDICOMSeries( ) +_AssociatePluginsToMenu( ) { - // Clear all, since we are loading the main image - if( this->m_Objects.size( ) > 0 ) - { - this->m_UI->MPR->ClearAll( ); - this->m_Objects.clear( ); - - } // fi + this->m_UI->MenuFilters->clear( ); - // Read and show image, if possible - TPlugins::TImage::Pointer image; - if( this->m_Plugins->ReadDicomSeries( image ) ) + TPlugins::TStringContainer categories; + this->m_Plugins.GetLoadedCategories( categories ); + for( auto cIt = categories.begin( ); cIt != categories.end( ); ++cIt ) { - vtkImageData* vimage = image->GetVTK< vtkImageData >( ); - if( vimage == NULL ) - QMessageBox::critical( - this, - QMessageBox::tr( "Error showing image." ), - QMessageBox::tr( - "Image was read, but no valid VTK conversion was found." - ) + QMenu* category = this->m_UI->MenuFilters->addMenu( cIt->c_str( ) ); + const TPlugins::TStringContainer& filters = + this->m_Plugins.GetLoadedFilters( *cIt ); + for( auto fIt = filters.begin( ); fIt != filters.end( ); ++fIt ) + { + QAction* filter = category->addAction( fIt->c_str( ) ); + this->connect( + filter, SIGNAL( triggered( ) ), + this, SLOT( _execPlugin( ) ) ); - 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( ) ); + } // rof - } // fi + } // rof } +// ------------------------------------------------------------------------- +#define ImageMPR_ReadImage( F ) \ + this->m_UI->MPR->DeleteAllData( ); \ + this->m_Plugins.ClearDataObjects( ); \ + try \ + { \ + std::string name = this->m_Plugins.Read##F( "" ); \ + if( name == "" ) \ + return; \ + TImage* image = this->m_Plugins.GetData< TImage >( name ); \ + this->m_UI->MPR->AddData( image, name, "" ); \ + this->m_UI->MPR->ShowData( name ); \ + } \ + catch( std::exception& err ) \ + { \ + QMessageBox::critical( \ + this, \ + QMessageBox::tr( "Error reading image." ), \ + QMessageBox::tr( err.what( ) ) \ + ); \ + } + +void ImageMPR::_aOpenImage( ) { ImageMPR_ReadImage( Image ) } +void ImageMPR::_aOpenDICOMSeries( ) { ImageMPR_ReadImage( DicomSeries ) } + // ------------------------------------------------------------------------- void ImageMPR:: _aOpenSegmentation( ) @@ -143,13 +201,10 @@ _aOpenPolyData( ) void ImageMPR:: _aSaveImage( ) { - std::string data_name = this->m_UI->MPR->GetSelectedData( ); - TPlugins::TImage* image = dynamic_cast< TPlugins::TImage* >( - this->m_Objects[ data_name ].second.GetPointer( ) - ); - if( image == NULL ) - return; - this->m_Plugins->WriteImage( image, true ); + /* + std::string data_name = this->m_UI->MPR->GetSelectedData( ); + this->m_Plugins->WriteImage( data_name ); + */ } // ------------------------------------------------------------------------- @@ -162,13 +217,6 @@ _aSaveSegmentation( ) void ImageMPR:: _aSavePolyData( ) { - std::string data_name = this->m_UI->MPR->GetSelectedData( ); - TPlugins::TMesh* mesh = dynamic_cast< TPlugins::TMesh* >( - this->m_Objects[ data_name ].second.GetPointer( ) - ); - if( mesh == NULL ) - return; - this->m_Plugins->WriteMesh( mesh, true ); } // ------------------------------------------------------------------------- @@ -187,10 +235,8 @@ _aRedo( ) void ImageMPR:: _aLoadPlugins( ) { - this->m_Plugins->DialogLoadPlugins( ); - this->m_Plugins->AssociatePluginsToMenu( - this->m_UI->MenuFilters, this, SLOT( _execPlugin( ) ) - ); + this->m_Plugins.DialogLoadPlugins( ); + this->_AssociatePluginsToMenu( ); } // ------------------------------------------------------------------------- @@ -203,131 +249,49 @@ _aShowPlugins( ) void ImageMPR:: _execPlugin( ) { - // Get filter name + // Get filter's name QAction* action = dynamic_cast< QAction* >( this->sender( ) ); if( action == NULL ) return; - QMenu* menu = dynamic_cast< QMenu* >( action->parentWidget( ) ); - if( menu == NULL ) - return; - 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 + // Get IO names + TPlugins::TStringContainer inputs; + this->m_Plugins.GetActiveFilterInputsNames( inputs ); - // Configure filter - if( !( filter->ExecConfigurationDialog( this ) ) ) - return; - - // Assign inputs - std::string data_name = this->m_UI->MPR->GetSelectedData( ); - std::vector< std::string > inputs_names = filter->GetInputsNames( ); - if( inputs_names.size( ) == 1 ) + // Configure inputs + if( inputs.size( ) > 1 ) { - TTree::iterator iIt = this->m_Objects.find( data_name ); - if( iIt == this->m_Objects.end( ) ) - { - QMessageBox::critical( - this, - tr( "Error configuring filter" ), - tr( "No valid input found. Please select a valid input." ) - ); - return; - - } //fi - filter->SetInput( inputs_names[ 0 ], iIt->second.second ); + // TODO } - else if( inputs_names.size( ) > 1 ) + else if( inputs.size( ) == 1 ) { - QMessageBox::critical( - this, - tr( "Error executing" ), - tr( "Filter has multiple inputs: NOT YET IMPLEMENTED!!!" ) + this->m_ActiveFilterMainInput = this->m_UI->MPR->GetSelectedData( ); + this->m_Plugins.ConnectInputInActiveFilter( + this->m_ActiveFilterMainInput, *( inputs.begin( ) ) ); - return; } // fi - // Execute filter - this->_Block( ); - std::string filter_err = filter->Update( ); - this->_Unblock( ); - if( filter_err != "" ) + // Configure paramereters + auto dlg_res = this->m_Plugins.ConfigureActiveFilter( ); + if( dlg_res == TPlugins::TProcessObject::DialogResult_Cancel ) { - QMessageBox::critical( - this, - tr( "Error executing" ), - tr( filter_err.c_str( ) ) - ); + // Just deactivate filter, since it was canceled + this->m_Plugins.DeactivateFilter( ); return; - - } // fi - - // Get outputs - std::vector< std::string > outputs_names = filter->GetOutputsNames( ); - for( - auto oIt = outputs_names.begin( ); - oIt != outputs_names.end( ); - ++oIt - ) + } + else if( dlg_res == TPlugins::TProcessObject::DialogResult_NoModal ) { - std::string out_name = filter_name + "_" + *oIt; - - TPlugins::TImage* image = filter->GetOutput< TPlugins::TImage >( *oIt ); - if( image != NULL ) - { - if( filter_cate == "ImageToBinaryImageFilter" ) - { - this->m_UI->MPR->ShowImage( - image->GetVTK< vtkImageData >( ), - out_name, - data_name, 1, 0, 0 - ); - } - else if( filter_cate == "ImageToImageFilter" ) - { - } // fi - - // Keep a track on a local data tree and go to next output - this->m_Objects[ out_name ] = TTreeNode( data_name, image ); - continue; + // Execute automatic filter and associate outputs + this->UpdateActualFilter( ); + this->m_Plugins.DeactivateFilter( ); - } // fi - - TPlugins::TMesh* mesh = filter->GetOutput< TPlugins::TMesh >( *oIt ); - if( mesh != NULL ) - { - // Show mesh - this->_Block( ); - this->m_UI->MPR->ShowMesh( - mesh->GetVTK< vtkPolyData >( ), - out_name, - data_name - ); - this->_Unblock( ); - - // Keep a track on a local data tree and go to next output - this->m_Objects[ out_name ] = TTreeNode( data_name, mesh ); - continue; - - } // fi - - } // rof + } // fi } // -------------------------------------------------------------------------