]> Creatis software - bbtk.git/commitdiff
Revert to previous version (ImageCharacteristics does the job, now)
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 18 Jun 2008 17:09:51 +0000 (17:09 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Wed, 18 Jun 2008 17:09:51 +0000 (17:09 +0000)
packages/vtk/src/bbvtkMetaImageReader.xml

index 085a1fdb98ac9880f9f82ea6caff81de2dcf37b4..38661c6cfa7c4e3993bd0441cc1eaf6aee12b060 100644 (file)
 
 <input name="In" type="std::string" nature="file name" description="Name of the file to read"/>  
 <output name="Out" type="vtkImageData*" description="Output image" special="vtk output"/>
-<output name="NX" type="int" description="Number of Columns"/>
-<output name="NY" type="int" description="Number of Rows"/>
-<output name="NZ" type="int" description="Number of Planes"/>
  
  <process><PRE>
    SetFileName(bbGetInputIn().c_str());
    vtkParent::Update();
-   GetOutput()->GetDimensions();
-   bbSetOutputNX(GetOutput()->GetDimensions()[0]);
-   bbSetOutputNY(GetOutput()->GetDimensions()[1]);
-   bbSetOutputNZ(GetOutput()->GetDimensions()[2]);      
  </PRE></process>
 
 </blackbox>