X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fitk%2Fsrc%2FbbitkImageProperties.cxx;h=b8b9f12a3e0b14dcf59acc9c0b1637c697a10e5a;hb=9d9d8515536607da0a24c67a95ee7429312537de;hp=eed32093bde524554e78f053467d0e34624f510e;hpb=443fab11d4694575d7b826a384869d700d1b9036;p=bbtk.git diff --git a/packages/itk/src/bbitkImageProperties.cxx b/packages/itk/src/bbitkImageProperties.cxx index eed3209..b8b9f12 100644 --- a/packages/itk/src/bbitkImageProperties.cxx +++ b/packages/itk/src/bbitkImageProperties.cxx @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbitkImageProperties.cxx,v $ Language: C++ - Date: $Date: 2009/12/18 14:00:05 $ - Version: $Revision: 1.10 $ + Date: $Date: 2010/09/21 06:43:17 $ + Version: $Revision: 1.12 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -37,8 +37,6 @@ #include "bbitkImageProperties.h" #include "bbitkPackage.h" - - namespace bbitk { BBTK_BLACK_BOX_IMPLEMENTATION(ImageProperties,bbtk::AtomicBlackBox); @@ -49,25 +47,22 @@ namespace bbitk void ImageProperties::bbUserSetDefaultValues() { } - + //----------------------------------------------------------------- void ImageProperties::bbUserInitializeProcessing() { } - + //----------------------------------------------------------------- void ImageProperties::bbUserFinalizeProcessing() { } - void ImageProperties::DoIt() { BBTK_TEMPLATE_ITK_IMAGE_SWITCH(bbGetInputIn().type(),DoIt); } - - /** Template Processing */ @@ -78,7 +73,6 @@ namespace bbitk <() <<">()"<(); unsigned int dim = im->GetImageDimension(); @@ -99,9 +93,8 @@ namespace bbitk vsz.push_back(sz[i]); // brute hack to avoid failure of most black boxes that expects 3D images. // JPR - // if (dim<3) - // vsz.push_back(1); - + if (dim==2) + vsz.push_back(1); bbSetOutputSize(vsz); typename itkImageType::SpacingType sp = im->GetSpacing(); @@ -110,16 +103,13 @@ namespace bbitk vsp.push_back(sp[i]); // brute hack to avoid failure of most black boxes that expects 3D images. // JPR - // if (dim<3) - // vsp.push_back(1); - + if (dim==2) + vsp.push_back(1.0); + bbSetOutputSpacing(vsp); bbtkDebugDecTab("Core",9); } - - - } // eo namespace bbtk