Skip to content
Snippets Groups Projects
Commit b66007c7 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

ENH: add get accessor

parent fe9b02fa
No related branches found
No related tags found
No related merge requests found
......@@ -79,8 +79,8 @@ public :
itkStaticConstMacro(SpaceDimension, unsigned int, NInputDimensions);
itkStaticConstMacro(ParametersDimension, unsigned int,NInputDimensions*(NInputDimensions+1));
void SetLevel(unsigned char level);
void SetLevel(unsigned int level);
unsigned int GetLevel() const;
OutputPointType TransformPoint(const InputPointType &point) const;
virtual InputPointType Origin();
......
......@@ -128,11 +128,19 @@ TileMapTransform<TTransformDirection, TScalarType, NInputDimensions, NOutputDime
template<InverseOrForwardTransformationEnum TTransformDirection, class TScalarType,
unsigned int NInputDimensions, unsigned int NOutputDimensions>
void TileMapTransform<TTransformDirection, TScalarType, NInputDimensions, NOutputDimensions>
::SetLevel(unsigned char level)
::SetLevel(unsigned int level)
{
m_TileMapTransform->setDepth(level);
}
template<InverseOrForwardTransformationEnum TTransformDirection, class TScalarType,
unsigned int NInputDimensions, unsigned int NOutputDimensions>
unsigned int TileMapTransform<TTransformDirection, TScalarType, NInputDimensions, NOutputDimensions>
::GetLevel() const
{
return m_TileMapTransform->getDepth();
}
} // namespace otb
#endif
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