OTB  9.0.0
Orfeo Toolbox
Public Types | Public Member Functions | Static Public Member Functions | List of all members
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType > Class Template Reference

#include <otbStreamingResampleImageFilter.h>

+ Inheritance diagram for otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >:
+ Collaboration diagram for otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >:

Public Types

typedef itk::SmartPointer< const SelfConstPointer
 
typedef itk::LinearInterpolateImageFunction< InputImageType, TInterpolatorPrecisionType > DefaultInterpolatorType
 
typedef itk::TransformToDisplacementFieldSource< DisplacementFieldType, double > DisplacementFieldGeneratorType
 
typedef otb::Image< DisplacementTypeDisplacementFieldType
 
typedef itk::Vector< double, TOutputImage::ImageDimension > DisplacementType
 
typedef itk::ImageBase< OutputImageType::ImageDimension > ImageBaseType
 
typedef DisplacementFieldGeneratorType::IndexType IndexType
 
typedef TInputImage InputImageType
 
typedef InterpolatorType::Pointer InterpolatorPointerType
 
typedef itk::InterpolateImageFunction< InputImageType, TInterpolatorPrecisionType > InterpolatorType
 
typedef DisplacementFieldGeneratorType::OriginType OriginType
 
typedef TOutputImage OutputImageType
 
typedef itk::SmartPointer< SelfPointer
 
typedef DisplacementFieldGeneratorType::RegionType RegionType
 
typedef StreamingResampleImageFilter Self
 
typedef DisplacementFieldGeneratorType::SizeType SizeType
 
typedef DisplacementFieldGeneratorType::SpacingType SpacingType
 
typedef itk::ImageToImageFilter< TInputImage, TOutputImage > Superclass
 
typedef DisplacementFieldGeneratorType::TransformType TransformType
 
typedef StreamingWarpImageFilter< InputImageType, OutputImageType, DisplacementFieldTypeWarpImageFilterType
 

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother (void) const
 
virtual const char * GetNameOfClass () const
 

Static Public Member Functions

static Pointer New ()
 
SpacingType m_SignedOutputSpacing
 
DisplacementFieldGeneratorType::Pointer m_DisplacementFilter
 
WarpImageFilterType::Pointer m_WarpFilter
 
void SetTransform (TransformType *transform)
 
 otbGetObjectMemberConstMacro (DisplacementFilter, Transform, const TransformType *)
 
void SetDisplacementFieldSpacing (SpacingType spacing)
 
const SpacingTypeGetDisplacementFieldSpacing () const
 
void SetOutputOrigin (const OriginType &origin)
 
 otbGetObjectMemberConstReferenceMacro (WarpFilter, OutputOrigin, OriginType)
 
 otbSetObjectMemberMacro (WarpFilter, OutputStartIndex, IndexType)
 
 otbGetObjectMemberConstReferenceMacro (WarpFilter, OutputStartIndex, IndexType)
 
 otbSetObjectMemberMacro (WarpFilter, OutputSize, SizeType)
 
 otbGetObjectMemberConstReferenceMacro (WarpFilter, OutputSize, SizeType)
 
 otbSetObjectMemberMacro (WarpFilter, OutputSpacing, SpacingType)
 
 otbGetObjectMemberConstReferenceMacro (WarpFilter, OutputSpacing, SpacingType)
 
void SetInterpolator (InterpolatorType *interpolator)
 
 otbGetObjectMemberConstMacro (WarpFilter, Interpolator, const InterpolatorType *)
 
 otbSetObjectMemberMacro (WarpFilter, EdgePaddingValue, typename OutputImageType::PixelType)
 
 otbGetObjectMemberMacro (WarpFilter, EdgePaddingValue, typename OutputImageType::PixelType)
 
void SetOutputParametersFromImage (const ImageBaseType *image)
 
void SetDisplacementFilterNumberOfThreads (unsigned int nbThread)
 
void PropagateRequestedRegion (itk::DataObject *output) override
 
 StreamingResampleImageFilter ()
 
 ~StreamingResampleImageFilter () override
 
void GenerateData () override
 
void GenerateOutputInformation () override
 
void PrintSelf (std::ostream &os, itk::Indent indent) const override
 
 StreamingResampleImageFilter (const Self &)=delete
 
void operator= (const Self &)=delete
 

Detailed Description

template<class TInputImage, class TOutputImage, class TInterpolatorPrecisionType = double>
class otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >

This class is a composite filter resampling an input image by setting a transform. The filter computes a displacement grid using the transform set and used it to warp the input.

The otb::StreamingResampleImageFilter allows resampling a otb::VectorImage using a transformation set with SetTransform() method. First, a displacement grid, with a spacing m_DisplacementGridSpacing and a size relative to this spacing, is built. Then, the image is wrapped using this displacement grid. The size (SetOutputSize()), the spacing (SetOutputSpacing()), the start index (SetOutputIndex()) and the interpolator (SetInterpolator()) and the origin (SetOrigin()) can be set using the method between brackets.

Definition at line 59 of file otbStreamingResampleImageFilter.h.

Member Typedef Documentation

◆ ConstPointer

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::SmartPointer<const Self> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::ConstPointer

Definition at line 66 of file otbStreamingResampleImageFilter.h.

◆ DefaultInterpolatorType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::LinearInterpolateImageFunction<InputImageType, TInterpolatorPrecisionType> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::DefaultInterpolatorType

Definition at line 97 of file otbStreamingResampleImageFilter.h.

◆ DisplacementFieldGeneratorType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::TransformToDisplacementFieldSource<DisplacementFieldType, double> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::DisplacementFieldGeneratorType

Internal filters typedefs

Definition at line 86 of file otbStreamingResampleImageFilter.h.

◆ DisplacementFieldType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef otb::Image<DisplacementType> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::DisplacementFieldType

Definition at line 80 of file otbStreamingResampleImageFilter.h.

◆ DisplacementType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::Vector<double, TOutputImage::ImageDimension> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::DisplacementType

Displacement field used to warp the image

Definition at line 79 of file otbStreamingResampleImageFilter.h.

◆ ImageBaseType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::ImageBase<OutputImageType::ImageDimension> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::ImageBaseType

ImageBase typedef

Definition at line 100 of file otbStreamingResampleImageFilter.h.

◆ IndexType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::IndexType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::IndexType

Definition at line 91 of file otbStreamingResampleImageFilter.h.

◆ InputImageType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef TInputImage otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::InputImageType

Typedef parameters

Definition at line 72 of file otbStreamingResampleImageFilter.h.

◆ InterpolatorPointerType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef InterpolatorType::Pointer otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::InterpolatorPointerType

Definition at line 96 of file otbStreamingResampleImageFilter.h.

◆ InterpolatorType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::InterpolateImageFunction<InputImageType, TInterpolatorPrecisionType> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::InterpolatorType

Interpolator type

Definition at line 95 of file otbStreamingResampleImageFilter.h.

◆ OriginType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::OriginType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::OriginType

Definition at line 90 of file otbStreamingResampleImageFilter.h.

◆ OutputImageType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef TOutputImage otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::OutputImageType

Definition at line 76 of file otbStreamingResampleImageFilter.h.

◆ Pointer

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::SmartPointer<Self> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::Pointer

Definition at line 65 of file otbStreamingResampleImageFilter.h.

◆ RegionType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::RegionType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::RegionType

Definition at line 92 of file otbStreamingResampleImageFilter.h.

◆ Self

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef StreamingResampleImageFilter otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::Self

Standard class typedefs.

Definition at line 63 of file otbStreamingResampleImageFilter.h.

◆ SizeType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::SizeType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SizeType

Definition at line 88 of file otbStreamingResampleImageFilter.h.

◆ SpacingType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::SpacingType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SpacingType

Definition at line 89 of file otbStreamingResampleImageFilter.h.

◆ Superclass

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef itk::ImageToImageFilter<TInputImage, TOutputImage> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::Superclass

Definition at line 64 of file otbStreamingResampleImageFilter.h.

◆ TransformType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef DisplacementFieldGeneratorType::TransformType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::TransformType

Definition at line 87 of file otbStreamingResampleImageFilter.h.

◆ WarpImageFilterType

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
typedef StreamingWarpImageFilter<InputImageType, OutputImageType, DisplacementFieldType> otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::WarpImageFilterType

filter warping input image using displacement field

Definition at line 83 of file otbStreamingResampleImageFilter.h.

Constructor & Destructor Documentation

◆ StreamingResampleImageFilter() [1/2]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::StreamingResampleImageFilter
protected

Accessors to internal filters parameters

Definition at line 32 of file otbStreamingResampleImageFilter.hxx.

◆ ~StreamingResampleImageFilter()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::~StreamingResampleImageFilter ( )
inlineoverrideprotected

Destructor

Definition at line 173 of file otbStreamingResampleImageFilter.h.

◆ StreamingResampleImageFilter() [2/2]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::StreamingResampleImageFilter ( const Self )
privatedelete

Accessors to internal filters parameters

Member Function Documentation

◆ CreateAnother()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
virtual::itk::LightObject::Pointer otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::CreateAnother ( void  ) const

◆ GenerateData()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GenerateData
overrideprotected

Accessors to internal filters parameters

Definition at line 47 of file otbStreamingResampleImageFilter.hxx.

◆ GenerateOutputInformation()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GenerateOutputInformation
overrideprotected

Accessors to internal filters parameters

Definition at line 63 of file otbStreamingResampleImageFilter.hxx.

◆ GetDisplacementFieldSpacing()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
const SpacingType& otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GetDisplacementFieldSpacing ( ) const
inline

Accessors to internal filters parameters

Definition at line 115 of file otbStreamingResampleImageFilter.h.

◆ GetNameOfClass()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
virtual const char* otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::GetNameOfClass ( ) const
virtual

Run-time type information (and related methods).

◆ New()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
static Pointer otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::New ( )
static

Method for creation through the object factory.

◆ operator=()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::operator= ( const Self )
privatedelete

Accessors to internal filters parameters

◆ otbGetObjectMemberConstMacro() [1/2]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstMacro ( DisplacementFilter  ,
Transform  ,
const TransformType  
)

Accessors to internal filters parameters

◆ otbGetObjectMemberConstMacro() [2/2]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstMacro ( WarpFilter  ,
Interpolator  ,
const InterpolatorType  
)

Accessors to internal filters parameters

◆ otbGetObjectMemberConstReferenceMacro() [1/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstReferenceMacro ( WarpFilter  ,
OutputOrigin  ,
OriginType   
)

Accessors to internal filters parameters

◆ otbGetObjectMemberConstReferenceMacro() [2/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstReferenceMacro ( WarpFilter  ,
OutputSize  ,
SizeType   
)

Accessors to internal filters parameters

◆ otbGetObjectMemberConstReferenceMacro() [3/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstReferenceMacro ( WarpFilter  ,
OutputSpacing  ,
SpacingType   
)

Accessors to internal filters parameters

◆ otbGetObjectMemberConstReferenceMacro() [4/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberConstReferenceMacro ( WarpFilter  ,
OutputStartIndex  ,
IndexType   
)

Accessors to internal filters parameters

◆ otbGetObjectMemberMacro()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbGetObjectMemberMacro ( WarpFilter  ,
EdgePaddingValue  ,
typename OutputImageType::PixelType   
)

Accessors to internal filters parameters

◆ otbSetObjectMemberMacro() [1/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbSetObjectMemberMacro ( WarpFilter  ,
EdgePaddingValue  ,
typename OutputImageType::PixelType   
)

Default Edgepadding value

◆ otbSetObjectMemberMacro() [2/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbSetObjectMemberMacro ( WarpFilter  ,
OutputSize  ,
SizeType   
)

Accessors to internal filters parameters

◆ otbSetObjectMemberMacro() [3/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbSetObjectMemberMacro ( WarpFilter  ,
OutputSpacing  ,
SpacingType   
)

Accessors to internal filters parameters

◆ otbSetObjectMemberMacro() [4/4]

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::otbSetObjectMemberMacro ( WarpFilter  ,
OutputStartIndex  ,
IndexType   
)

Accessors to internal filters parameters

◆ PrintSelf()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::PrintSelf ( std::ostream &  os,
itk::Indent  indent 
) const
overrideprotected

Accessors to internal filters parameters

Definition at line 146 of file otbStreamingResampleImageFilter.hxx.

◆ PropagateRequestedRegion()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::PropagateRequestedRegion ( itk::DataObject *  output)
override

Override itk::ProcessObject method to let the internal filter do the propagation

Definition at line 98 of file otbStreamingResampleImageFilter.hxx.

◆ SetDisplacementFieldSpacing()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetDisplacementFieldSpacing ( SpacingType  spacing)

The Displacement field spacing & size

Definition at line 122 of file otbStreamingResampleImageFilter.hxx.

◆ SetDisplacementFilterNumberOfThreads()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetDisplacementFilterNumberOfThreads ( unsigned int  nbThread)
inline

Accessors to internal filters parameters

Definition at line 161 of file otbStreamingResampleImageFilter.h.

◆ SetInterpolator()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetInterpolator ( InterpolatorType interpolator)
inline

Methods to Set/Get the interpolator

Definition at line 144 of file otbStreamingResampleImageFilter.h.

◆ SetOutputOrigin()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetOutputOrigin ( const OriginType origin)
inline

The resampled image parameters

Definition at line 122 of file otbStreamingResampleImageFilter.h.

◆ SetOutputParametersFromImage()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType >
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetOutputParametersFromImage ( const ImageBaseType image)

Import output parameters from a given image

Method used to copy the parameters of the input image

Definition at line 112 of file otbStreamingResampleImageFilter.hxx.

References otb::internal::GetSignedSpacing().

◆ SetTransform()

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
void otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::SetTransform ( TransformType transform)
inline

Accessors to internal filters parameters

Definition at line 104 of file otbStreamingResampleImageFilter.h.

Member Data Documentation

◆ m_DisplacementFilter

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
DisplacementFieldGeneratorType::Pointer otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::m_DisplacementFilter
private

Accessors to internal filters parameters

Definition at line 189 of file otbStreamingResampleImageFilter.h.

◆ m_SignedOutputSpacing

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
SpacingType otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::m_SignedOutputSpacing
private

Accessors to internal filters parameters

Definition at line 187 of file otbStreamingResampleImageFilter.h.

◆ m_WarpFilter

template<class TInputImage , class TOutputImage , class TInterpolatorPrecisionType = double>
WarpImageFilterType::Pointer otb::StreamingResampleImageFilter< TInputImage, TOutputImage, TInterpolatorPrecisionType >::m_WarpFilter
private

Accessors to internal filters parameters

Definition at line 190 of file otbStreamingResampleImageFilter.h.


The documentation for this class was generated from the following files: