X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=common%2FvvImageReader.txx;h=e15e6d7688ff4a6a202e8f9e62bd42d133128ca5;hb=cc2f3e22307a2ddb835c4ae15dbe5302a143653f;hp=6a4333ff3c59c055c704117954747e7f656a133b;hpb=4b9224d0e4cbce2c1b641a5b6967f267ccb23cb6;p=clitk.git diff --git a/common/vvImageReader.txx b/common/vvImageReader.txx index 6a4333f..e15e6d7 100644 --- a/common/vvImageReader.txx +++ b/common/vvImageReader.txx @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include @@ -36,12 +36,7 @@ template void vvImageReader::UpdateWithDim(std::string InputPixelType) { if (mType == VECTORFIELD || mType == VECTORFIELDWITHTIME) - { - if (VImageDimension == 4) - UpdateWithDimAndInputVectorPixelType,VImageDimension>(); - else - UpdateWithDimAndInputVectorPixelType,VImageDimension>(); - } + UpdateWithDimAndInputVectorPixelType,VImageDimension>(); else if (InputPixelType == "short") UpdateWithDimAndInputPixelType(); else if (InputPixelType == "unsigned_short") @@ -240,15 +235,14 @@ void vvImageReader::UpdateWithDimAndInputVectorPixelType() } analyzeImageIO = dynamic_cast( reader->GetImageIO() ); } - + typedef itk::Image< itk::Vector, VImageDimension > VectorImageType; - typedef itk::FlexibleVectorCastImageFilter CasterType; + typedef itk::VectorCastImageFilter CasterType; typename VectorImageType::Pointer casted_input; typename CasterType::Pointer caster = CasterType::New(); caster->SetInput(input); - caster->Update(); casted_input = caster->GetOutput(); - + mImage = vvImageFromITK >(casted_input, mType == IMAGEWITHTIME || mType == VECTORFIELDWITHTIME); // For unknown analyze orientations, we set identity