Skip to content
Snippets Groups Projects
Commit 7955fbf3 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ITK4: use otb::WarpImageFilter

parent 981e5a8f
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@
#include "itkGradientDescentOptimizer.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkWarpImageFilter.h"
#include "otbWarpImageFilter.h"
#include "otbNearestPointDeformationFieldGenerator.h"
#include "otbNNearestPointsLinearInterpolateDeformationFieldGenerator.h"
#include "otbBSplinesInterpolateDeformationFieldGenerator.h"
......@@ -127,7 +127,7 @@ int otbCenteredRigidDeformationFieldEstimation(int argc, char* argv[])
BSplinesTransformGeneratorType;
// Warper
typedef itk::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
typedef otb::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
//Input images reading
ReaderType::Pointer fixedReader = ReaderType::New();
......
......@@ -27,7 +27,7 @@
#include "itkGradientDescentOptimizer.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkWarpImageFilter.h"
#include "otbWarpImageFilter.h"
#include "otbNearestPointDeformationFieldGenerator.h"
#include "otbNNearestPointsLinearInterpolateDeformationFieldGenerator.h"
#include "otbBSplinesInterpolateDeformationFieldGenerator.h"
......@@ -127,7 +127,7 @@ int otbEuler2DDeformationFieldEstimation(int argc, char* argv[])
BSplinesTransformGeneratorType;
// Warper
typedef itk::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
typedef otb::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
//Input images reading
ReaderType::Pointer fixedReader = ReaderType::New();
......
......@@ -27,7 +27,7 @@
#include "itkGradientDescentOptimizer.h"
#include "itkRescaleIntensityImageFilter.h"
#include "itkWarpImageFilter.h"
#include "otbWarpImageFilter.h"
#include "otbNearestPointDeformationFieldGenerator.h"
#include "otbNNearestPointsLinearInterpolateDeformationFieldGenerator.h"
#include "otbBSplinesInterpolateDeformationFieldGenerator.h"
......@@ -125,7 +125,7 @@ int otbTranslationDeformationFieldEstimation(int argc, char* argv[])
BSplinesTransformGeneratorType;
// Warper
typedef itk::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
typedef otb::WarpImageFilter<ImageType, ImageType, DeformationFieldType> ImageWarperType;
//Input images reading
ReaderType::Pointer fixedReader = ReaderType::New();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment