Skip to content

Commit

Permalink
COMP: ANTsRegistration got renamed into ANTSRegistration
Browse files Browse the repository at this point in the history
  • Loading branch information
dzenanz committed Aug 23, 2024
1 parent b4a4a68 commit 9abd837
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/itkANTsGroupwiseRegistration.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define itkANTsGroupwiseRegistration_h

#include "itkImageToImageFilter.h"
#include "itkANTsRegistration.h"
#include "itkANTSRegistration.h"
#include "itkImage.h"
#include "itkDisplacementFieldTransform.h"

Expand Down Expand Up @@ -148,7 +148,7 @@ class ANTsGroupwiseRegistration : public ImageToImageFilter<TTemplateImage, TTem
return m_TransformList[imageIndex];
}

using PairwiseType = ANTsRegistration<TemplateImageType, ImageType, ParametersValueType>;
using PairwiseType = ANTSRegistration<TemplateImageType, ImageType, ParametersValueType>;
/** Set/Get step size for shape update gradient. */
itkSetObjectMacro(PairwiseRegistration, PairwiseType);
itkGetModifiableObjectMacro(PairwiseRegistration, PairwiseType);
Expand Down
2 changes: 1 addition & 1 deletion test/itkANTsGroupwiseRegistrationTest.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ itkANTsGroupwiseRegistrationTest(int argc, char * argv[])
filter->SetIterations(4);
filter->SetGradientStep(0.15);

using PairwiseType = itk::ANTsRegistration<FloatImageType, ImageType, float>;
using PairwiseType = itk::ANTSRegistration<FloatImageType, ImageType, float>;
typename PairwiseType::Pointer pairwiseRegistration = PairwiseType::New();
pairwiseRegistration->SetTypeOfTransform(typeOfTransform);
pairwiseRegistration->SetSynMetric("CC");
Expand Down

0 comments on commit 9abd837

Please sign in to comment.