diff --git a/test/rtkspectralonesteptest.cxx b/test/rtkspectralonesteptest.cxx index f62e4ce0a..dfc061c8d 100644 --- a/test/rtkspectralonesteptest.cxx +++ b/test/rtkspectralonesteptest.cxx @@ -4,7 +4,6 @@ #include "rtkConstantImageSource.h" #include "rtkMechlemOneStepSpectralReconstructionFilter.h" #include "rtkSpectralForwardModelImageFilter.h" -#include "rtkReorderProjectionsImageFilter.h" #ifdef USE_CUDA # include "itkCudaImage.h" @@ -312,15 +311,6 @@ main(int argc, char * argv[]) std::cout << "\n\n****** Case 3: Voxel-based Backprojector, 4 subsets, with regularization ******" << std::endl; - using ReorderProjectionsFilterType = rtk::ReorderProjectionsImageFilter; - ReorderProjectionsFilterType::Pointer reorder = ReorderProjectionsFilterType::New(); - reorder->SetInput(composePhotonCounts->GetOutput()); - reorder->SetInputGeometry(geometry); - reorder->SetPermutation(rtk::ReorderProjectionsImageFilter::SHUFFLE); - TRY_AND_EXIT_ON_ITK_EXCEPTION(reorder->Update()) - mechlemOneStep->SetInputPhotonCounts(reorder->GetOutput()); - mechlemOneStep->SetGeometry(reorder->GetOutputGeometry()); - mechlemOneStep->SetBackProjectionFilter(MechlemType::BP_VOXELBASED); mechlemOneStep->SetNumberOfSubsets(4); mechlemOneStep->SetNumberOfIterations(5);