Skip to content
Snippets Groups Projects
Commit d37dfb1e authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : itinialize the deformation grid spacing to 2 times the output image spacing

parent 5bfba017
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,8 @@
#ifndef __otbStreamingResampleImageFilter_txx
#define __otbStreamingResampleImageFilter_txx
#include "itkNumericTraits.h"
namespace otb
{
......@@ -30,6 +32,12 @@ StreamingResampleImageFilter<TInputImage, TOutputImage, TInterpolatorPrecisionTy
m_DeformationFilter = DeformationFieldGeneratorType::New();
m_WarpFilter = WarpImageFilterType::New();
// Initialize the deformation field spacing to zero : inconsistant
// value
SpacingType nullDeformationFieldSpacing;
nullDeformationFieldSpacing.Fill(0.);
m_DeformationFilter->SetOutputSpacing(nullDeformationFieldSpacing);
// Wire minipipeline
m_WarpFilter->SetDeformationField(m_DeformationFilter->GetOutput());
}
......@@ -65,6 +73,11 @@ StreamingResampleImageFilter<TInputImage, TOutputImage, TInterpolatorPrecisionTy
region.SetIndex(this->GetOutputStartIndex() );
outputPtr->SetLargestPossibleRegion(region);
// check the output spacing of the deformation field
// if 0 put an initial value
if(m_DeformationFilter->GetOutputSpacing() == itk::NumericTraits<SpacingType>::Zero )
m_DeformationFilter->SetOutputSpacing(2.*this->GetOutputSpacing());
}
template <class TInputImage, class TOutputImage, class TInterpolatorPrecisionType>
......@@ -84,6 +97,7 @@ StreamingResampleImageFilter<TInputImage, TOutputImage, TInterpolatorPrecisionTy
// Set up deformation field filter
SizeType deformationFieldLargestSize;
std::cout <<"DeformationField Spacing" <<m_DeformationFilter->GetOutputSpacing() << std::endl;
for(unsigned int dim = 0; dim < InputImageType::ImageDimension;++dim)
{
// vcl_ceil to avoid numerical problems due to division of
......
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