]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Plugins/RGBImageToOtherChannelsFilter.cxx
...
[cpPlugins.git] / lib / cpPlugins / Plugins / RGBImageToOtherChannelsFilter.cxx
index 1a882010c9816a4f10604b8ab7d8252f9a058f13..6cc0d1ca96a45eba1b813aeb3f00fd2464912d44 100644 (file)
@@ -53,7 +53,7 @@ std::string cpPlugins::Plugins::RGBImageToOtherChannelsFilter::
 _GenerateData( )
 {
   cpPlugins::Interface::Image* image =
-    this->_Input< cpPlugins::Interface::Image >( 0 );
+    this->GetInput< cpPlugins::Interface::Image >( 0 );
   if( image == NULL )
     return( "RGBImageToOtherChannelsFilter: No input image." );
 
@@ -119,7 +119,7 @@ _RealGD( itk::DataObject* image )
 
   // Connect output
   cpPlugins::Interface::Image* out =
-    this->_Output< cpPlugins::Interface::Image >( 0 );
+    this->GetOutput< cpPlugins::Interface::Image >( 0 );
   if( out != NULL )
   {
     out->SetITKImage< _O >( filter->GetOutput( ) );