From d87f7bee6741e5211324dfb72ccc0e2e59e91dd7 Mon Sep 17 00:00:00 2001 From: Leonardo Florez-Valencia Date: Mon, 23 Nov 2015 17:58:00 -0500 Subject: [PATCH] ... --- .../Algorithms/SpatialObjectMaskImageFilter.h | 16 +++-- .../SpatialObjectMaskImageFilter.hxx | 59 ++++++++++++++++--- .../Visualization/ImageBlender.cxx | 10 ++++ lib/cpExtensions/Visualization/ImageBlender.h | 2 + .../Visualization/ImageSliceActors.cxx | 25 +------- .../Visualization/ImageSliceActors.h | 2 - lib/cpExtensions/Visualization/MPRActors.cxx | 9 +++ lib/cpExtensions/Visualization/MPRActors.h | 1 + lib/cpPlugins/Interface/BaseMPRWidget.cxx | 9 ++- lib/cpPlugins/Interface/BaseMPRWidget.h | 2 + .../Plugins/BasicFilters/MacheteFilter.cxx | 49 +++++++++------ 11 files changed, 129 insertions(+), 55 deletions(-) diff --git a/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.h b/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.h index f8fd354..2b81fb7 100644 --- a/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.h +++ b/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.h @@ -2,7 +2,7 @@ #define __CPEXTENSIONS__ALGORITHMS__SPATIALOBJECTMASKIMAGEFILTER__H__ #include -#include +#include #include namespace cpExtensions @@ -13,11 +13,11 @@ namespace cpExtensions */ template< class I, class O = I > class SpatialObjectMaskImageFilter - : public itk::InPlaceImageFilter< I, O > + : public itk::ImageToImageFilter< I, O > { public: typedef SpatialObjectMaskImageFilter Self; - typedef itk::InPlaceImageFilter< I, O > Superclass; + typedef itk::ImageToImageFilter< I, O > Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; @@ -28,12 +28,10 @@ namespace cpExtensions itkStaticConstMacro( OutputDimension, unsigned int, O::ImageDimension ); #ifdef ITK_USE_CONCEPT_CHECKING - // Begin concept checking itkConceptMacro( SameDimensionCheck1, ( itk::Concept::SameDimension< InputDimension, OutputDimension > ) ); - // End concept checking #endif typedef typename I::RegionType TRegion; @@ -42,7 +40,7 @@ namespace cpExtensions public: itkNewMacro( Self ); - itkTypeMacro( SpatialObjectMaskImageFilter, itk::InPlaceImageFilter ); + itkTypeMacro( SpatialObjectMaskImageFilter, itk::ImageToImageFilter ); itkGetObjectMacro( SpatialObject, TSpatialObject ); itkGetConstObjectMacro( SpatialObject, TSpatialObject ); @@ -51,6 +49,12 @@ namespace cpExtensions itkSetObjectMacro( SpatialObject, TSpatialObject ); itkSetMacro( OutsideValue, TOutPixel ); + public: + O* GetPositiveOutput( ); + const O* GetPositiveOutput( ) const; + O* GetNegativeOutput( ); + const O* GetNegativeOutput( ) const; + protected: SpatialObjectMaskImageFilter( ); virtual ~SpatialObjectMaskImageFilter( ); diff --git a/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.hxx b/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.hxx index 2df9c6f..2c3cac7 100644 --- a/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.hxx +++ b/lib/cpExtensions/Algorithms/SpatialObjectMaskImageFilter.hxx @@ -4,6 +4,38 @@ #include #include +// ------------------------------------------------------------------------- +template< class I, class O > +O* cpExtensions::Algorithms::SpatialObjectMaskImageFilter< I, O >:: +GetPositiveOutput( ) +{ + return( this->GetOutput( 0 ) ); +} + +// ------------------------------------------------------------------------- +template< class I, class O > +const O* cpExtensions::Algorithms::SpatialObjectMaskImageFilter< I, O >:: +GetPositiveOutput( ) const +{ + return( this->GetOutput( 0 ) ); +} + +// ------------------------------------------------------------------------- +template< class I, class O > +O* cpExtensions::Algorithms::SpatialObjectMaskImageFilter< I, O >:: +GetNegativeOutput( ) +{ + return( this->GetOutput( 1 ) ); +} + +// ------------------------------------------------------------------------- +template< class I, class O > +const O* cpExtensions::Algorithms::SpatialObjectMaskImageFilter< I, O >:: +GetNegativeOutput( ) const +{ + return( this->GetOutput( 1 ) ); +} + // ------------------------------------------------------------------------- template< class I, class O > cpExtensions::Algorithms::SpatialObjectMaskImageFilter< I, O >:: @@ -11,7 +43,9 @@ SpatialObjectMaskImageFilter( ) : Superclass( ) { this->SetNumberOfRequiredInputs( 1 ); - this->InPlaceOff( ); + this->SetNumberOfRequiredOutputs( 2 ); + this->SetNthOutput( 0, O::New( ) ); + this->SetNthOutput( 1, O::New( ) ); } // ------------------------------------------------------------------------- @@ -52,7 +86,8 @@ ThreadedGenerateData( const TRegion& region, itk::ThreadIdType threadId ) // Get inputs const I* in = dynamic_cast< const I* >( this->itk::ProcessObject::GetInput( 0 ) ); - O* out = this->GetOutput( 0 ); + O* pos_out = this->GetPositiveOutput( ); + O* neg_out = this->GetNegativeOutput( ); const auto size0 = region.GetSize( 0 ); if( size0 == 0 ) return; @@ -60,7 +95,8 @@ ThreadedGenerateData( const TRegion& region, itk::ThreadIdType threadId ) // Create iterators itk::ImageScanlineConstIterator< I > iIt( in, region ); - itk::ImageScanlineIterator< O > oIt( out, region ); + itk::ImageScanlineIterator< O > pos_oIt( pos_out, region ); + itk::ImageScanlineIterator< O > neg_oIt( neg_out, region ); itk::ProgressReporter progress( this, threadId, nLines ); // Main loop @@ -72,15 +108,24 @@ ThreadedGenerateData( const TRegion& region, itk::ThreadIdType threadId ) auto idx = iIt.GetIndex( ); in->TransformIndexToPhysicalPoint( idx, pnt ); if( this->m_SpatialObject->IsInside( pnt ) ) - oIt.Set( TOutPixel( iIt.Get( ) ) ); + { + pos_oIt.Set( TOutPixel( iIt.Get( ) ) ); + neg_oIt.Set( this->m_OutsideValue ); + } else - oIt.Set( this->m_OutsideValue ); + { + neg_oIt.Set( TOutPixel( iIt.Get( ) ) ); + pos_oIt.Set( this->m_OutsideValue ); + + } // fi ++iIt; - ++oIt; + ++pos_oIt; + ++neg_oIt; } // elihw iIt.NextLine( ); - oIt.NextLine( ); + pos_oIt.NextLine( ); + neg_oIt.NextLine( ); progress.CompletedPixel( ); } // elihw diff --git a/lib/cpExtensions/Visualization/ImageBlender.cxx b/lib/cpExtensions/Visualization/ImageBlender.cxx index 88d8567..44a08ab 100644 --- a/lib/cpExtensions/Visualization/ImageBlender.cxx +++ b/lib/cpExtensions/Visualization/ImageBlender.cxx @@ -15,6 +15,16 @@ New( ) return( new Self( ) ); } +// ------------------------------------------------------------------------- +unsigned int cpExtensions::Visualization::ImageBlender:: +GetNumberOfInputs( ) +{ + unsigned int np = this->GetNumberOfInputPorts( ); + unsigned int ni = 0; + for( unsigned int p = 0; p < np; ++p ) + ni += this->GetNumberOfInputConnections( p ); + return( ni ); +} // ------------------------------------------------------------------------- cpExtensions::Visualization::ImageBlender:: diff --git a/lib/cpExtensions/Visualization/ImageBlender.h b/lib/cpExtensions/Visualization/ImageBlender.h index deca4af..e4bf27c 100644 --- a/lib/cpExtensions/Visualization/ImageBlender.h +++ b/lib/cpExtensions/Visualization/ImageBlender.h @@ -24,6 +24,8 @@ namespace cpExtensions public: static Self* New( ); + unsigned int GetNumberOfInputs( ); + protected: ImageBlender( ); virtual ~ImageBlender( ); diff --git a/lib/cpExtensions/Visualization/ImageSliceActors.cxx b/lib/cpExtensions/Visualization/ImageSliceActors.cxx index 0081175..e2ac88a 100644 --- a/lib/cpExtensions/Visualization/ImageSliceActors.cxx +++ b/lib/cpExtensions/Visualization/ImageSliceActors.cxx @@ -327,8 +327,8 @@ PushActorsInto( vtkRenderWindow* window, bool force_style ) } else // if( axis == 2 ) { - camera->SetPosition( double( 0 ), double( 0 ), double( 1 ) ); - camera->SetViewUp ( double( 0 ), double( -1 ), double( 0 ) ); + camera->SetPosition( double( 0 ), double( 0 ), double( -1 ) ); + camera->SetViewUp ( double( 0 ), double( -1 ), double( 0 ) ); } // fi @@ -359,7 +359,7 @@ PopActorsFrom( vtkRenderWindow* window ) unsigned int cpExtensions::Visualization::ImageSliceActors:: GetNumberOfImages( ) const { - return( this->m_Blender->GetNumberOfInputPorts( ) ); + return( this->m_Blender->GetNumberOfInputs( ) ); } // ------------------------------------------------------------------------- @@ -860,25 +860,6 @@ SetSliceNumber( const int& slice ) // Update text this->UpdateText( ); - // Update lines from associated slices - /* TODO - auto sIt = this->m_AssociatedSlices.begin( ); - for( ; sIt != this->m_AssociatedSlices.end( ); ++sIt ) - { - Self* slice = *sIt; - for( unsigned int id = 0; id < slice->m_AssociatedSlices.size( ); ++id ) - { - std::cout << id << std::endl; - if( slice->m_AssociatedSlices[ id ] != this ) - continue; - - std::cout << "id : " << id << std::endl; - - } // rof - - } // rof - */ - // Update camera position if( this->m_Window == NULL ) return; diff --git a/lib/cpExtensions/Visualization/ImageSliceActors.h b/lib/cpExtensions/Visualization/ImageSliceActors.h index 81fc0e1..b4cec90 100644 --- a/lib/cpExtensions/Visualization/ImageSliceActors.h +++ b/lib/cpExtensions/Visualization/ImageSliceActors.h @@ -51,7 +51,6 @@ namespace cpExtensions typedef void ( *TSlicesCommand )( double*, int, void* ); typedef void ( *TWindowLevelCommand )( double, double, void* ); typedef TVoidCommand TRenderCommand; - typedef TSlicesCommand TCursorAxesCommand; typedef cpExtensions::Visualization::ImageBlender TBlender; @@ -61,7 +60,6 @@ namespace cpExtensions cpExtensions_BaseInteractorStyle_Commands( Slices ); cpExtensions_BaseInteractorStyle_Commands( WindowLevel ); cpExtensions_BaseInteractorStyle_Commands( Render ); - cpExtensions_BaseInteractorStyle_Commands( CursorAxes ); public: // Creation diff --git a/lib/cpExtensions/Visualization/MPRActors.cxx b/lib/cpExtensions/Visualization/MPRActors.cxx index 47f1251..e26651b 100644 --- a/lib/cpExtensions/Visualization/MPRActors.cxx +++ b/lib/cpExtensions/Visualization/MPRActors.cxx @@ -350,6 +350,14 @@ SetSlice( const int& axis, double* pos ) } // fi } +// ------------------------------------------------------------------------- +void cpExtensions::Visualization::MPRActors:: +SetAxesCursor( const int& axis, double* pos ) +{ + if( axis < 3 ) + this->Slices[ 0 ][ axis ]->SetAxesCursor( pos ); +} + // ------------------------------------------------------------------------- void cpExtensions::Visualization::MPRActors:: Render( const int& axis ) @@ -460,6 +468,7 @@ _SlicesCommand( double* pos, int axis, void* data ) if( actors->Slices[ 0 ][ j ]->GetAxis( ) != axis ) { actors->SetSlice( j, pos ); + actors->SetAxesCursor( j, pos ); actors->Render( j ); } // fi diff --git a/lib/cpExtensions/Visualization/MPRActors.h b/lib/cpExtensions/Visualization/MPRActors.h index e4d7bf6..91c0b50 100644 --- a/lib/cpExtensions/Visualization/MPRActors.h +++ b/lib/cpExtensions/Visualization/MPRActors.h @@ -89,6 +89,7 @@ namespace cpExtensions int GetSliceNumberMaxValue( const int& axis ) const; void SetSliceNumber( const int& axis, const int& slice ); void SetSlice( const int& axis, double* pos ); + void SetAxesCursor( const int& axis, double* pos ); // Rendering controls void Render( const int& axis ); diff --git a/lib/cpPlugins/Interface/BaseMPRWidget.cxx b/lib/cpPlugins/Interface/BaseMPRWidget.cxx index b84d75c..b971b71 100644 --- a/lib/cpPlugins/Interface/BaseMPRWidget.cxx +++ b/lib/cpPlugins/Interface/BaseMPRWidget.cxx @@ -183,7 +183,12 @@ ShowData( const std::string& name ) if( name == this->m_MainImage ) this->m_MPRObjects->SetInputImage( iIt->second.Image ); else + { + std::cout << this->m_MPRObjects->GetNumberOfImages( ) << std::endl; + + this->m_MPRObjects->AddBinaryImage( iIt->second.Image, 1, 0, 0 ); + } this->m_MPRObjects->Show( ); } else if( iIt->second.Tag == Data::MESH ) @@ -327,7 +332,9 @@ QTreeWidgetItem* cpPlugins::Interface::BaseMPRWidget:: _FindItemInTree( const std::string& name ) const { QList< QTreeWidgetItem* > items = - this->m_UI->LoadedData->findItems( name.c_str( ), Qt::MatchExactly ); + this->m_UI->LoadedData->findItems( + name.c_str( ), Qt::MatchExactly | Qt::MatchRecursive + ); if( items.size( ) > 0 ) return( items[ 0 ] ); else diff --git a/lib/cpPlugins/Interface/BaseMPRWidget.h b/lib/cpPlugins/Interface/BaseMPRWidget.h index cd269f4..a5ba35c 100644 --- a/lib/cpPlugins/Interface/BaseMPRWidget.h +++ b/lib/cpPlugins/Interface/BaseMPRWidget.h @@ -98,6 +98,8 @@ namespace cpPlugins void _SyncTop( int a, int b ); protected: + static double cm_Colors[ 8 ][ 3 ]; + Ui::BaseMPRWidget* m_UI; vtkSmartPointer< TMPRObjects > m_MPRObjects; QVTKWidget* m_VTK[ 4 ]; diff --git a/lib/cpPlugins/Plugins/BasicFilters/MacheteFilter.cxx b/lib/cpPlugins/Plugins/BasicFilters/MacheteFilter.cxx index 36bb0e8..916d2ed 100644 --- a/lib/cpPlugins/Plugins/BasicFilters/MacheteFilter.cxx +++ b/lib/cpPlugins/Plugins/BasicFilters/MacheteFilter.cxx @@ -187,7 +187,8 @@ MacheteFilter( ) m_PlaneWidget( NULL ) { this->_AddInput( "Input" ); - this->_MakeOutput< cpPlugins::Interface::DataObject >( "Output" ); + this->_MakeOutput< cpPlugins::Interface::DataObject >( "PositiveOutput" ); + this->_MakeOutput< cpPlugins::Interface::DataObject >( "NegativeOutput" ); itk::Point< double, 3 > center; itk::Vector< double, 3 > normal; @@ -252,12 +253,12 @@ _RealImage( itk::DataObject* dobj ) InfinitePlaneSpatialObject< I::ImageDimension > _TPlane; typedef cpExtensions::Algorithms:: - SpatialObjectMaskImageFilter< I > _TFilter; - typedef cpPlugins::Interface::DataObject _TDataObject; + SpatialObjectMaskImageFilter< I, I > _TFilter; + typedef cpPlugins::Interface::DataObject _TObj; typedef cpPlugins::Interface::Image _TImage; - typedef typename _TPlane::PointType _TPoint; - typedef typename _TPlane::VectorType _TVector; - typedef typename I::PixelType _TPixel; + typedef typename _TPlane::PointType _TPoint; + typedef typename _TPlane::VectorType _TVector; + typedef typename I::PixelType _TPixel; I* image = dynamic_cast< I* >( dobj ); @@ -279,18 +280,32 @@ _RealImage( itk::DataObject* dobj ) filter->SetOutsideValue( _TPixel( 0 ) ); filter->Update( ); - // Connect output (and correct its type) - auto name = this->GetOutput< _TDataObject >( "Output" )->GetName( ); - this->_MakeOutput< _TImage >( "Output" ); - _TImage* out = this->GetOutput< _TImage >( "Output" ); - if( out != NULL ) + // Get output names + auto pos_name = this->GetOutput< _TObj >( "PositiveOutput" )->GetName( ); + auto neg_name = this->GetOutput< _TObj >( "NegativeOutput" )->GetName( ); + + // Connect outputs (and correct their types and names) + _TImage* pos_out = this->GetOutput< _TImage >( "PositiveOutput" ); + if( pos_out == NULL ) + { + this->_MakeOutput< _TImage >( "PositiveOutput" ); + pos_out = this->GetOutput< _TImage >( "PositiveOutput" ); + pos_out->SetName( pos_name ); + + } // fi + _TImage* neg_out = this->GetOutput< _TImage >( "NegativeOutput" ); + if( neg_out == NULL ) { - out->SetITK< I >( filter->GetOutput( ) ); - out->SetName( name ); - return( "" ); - } - else - return( "MacheteFilter: output image not correctly created." ); + this->_MakeOutput< _TImage >( "NegativeOutput" ); + neg_out = this->GetOutput< _TImage >( "NegativeOutput" ); + neg_out->SetName( neg_name ); + + } // fi + + // Assign outputs + pos_out->SetITK< I >( filter->GetPositiveOutput( ) ); + neg_out->SetITK< I >( filter->GetNegativeOutput( ) ); + return( "" ); } // eof - $RCSfile$ -- 2.49.0