]> Creatis software - cpPlugins.git/blobdiff - plugins/ImageMeshFilters/RasterMeshFilter.cxx
...
[cpPlugins.git] / plugins / ImageMeshFilters / RasterMeshFilter.cxx
index 20a6769299597c2443dbbfb8ff02269c8d998b72..f2226db54b0927c919696a3e2d9e735fc454cc07 100644 (file)
@@ -18,13 +18,9 @@ RasterMeshFilter( )
   this->_ConfigureInput< _TDataObject >( "Template", false, false );
   this->_ConfigureOutput< _TImage >( "Output" );
 
-  this->m_Parameters.ConfigureAsUint( "InsideValue" );
-  this->m_Parameters.ConfigureAsUint( "OutsideValue" );
-  this->m_Parameters.ConfigureAsUint( "MinimumSize" );
-
-  this->m_Parameters.SetUint( "InsideValue", 1 );
-  this->m_Parameters.SetUint( "OutsideValue", 0 );
-  this->m_Parameters.SetUint( "MinimumSize", 100 );
+  this->m_Parameters.ConfigureAsUint( "InsideValue", 1 );
+  this->m_Parameters.ConfigureAsUint( "OutsideValue", 0 );
+  this->m_Parameters.ConfigureAsUint( "MinimumSize", 100 );
 }
 
 // -------------------------------------------------------------------------