Skip to content
Snippets Groups Projects
Commit b915a664 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

ENH: add sub-sampling params to Haralick filter

parent 69a07cdc
No related branches found
No related tags found
No related merge requests found
......@@ -166,6 +166,18 @@ public:
/** Get the input image maximum */
itkGetMacro(InputImageMaximum, InputPixelType);
/** Set the sub-sampling factor */
itkSetMacro(SubsampleFactor, SizeType);
/** Get the sub-sampling factor */
itkGetMacro(SubsampleFactor, SizeType);
/** Set the sub-sampling offset */
itkSetMacro(SubsampleOffset, IndexType);
/** Get the sub-sampling offset */
itkGetMacro(SubsampleOffset, IndexType);
/** Get the energy output image */
OutputImageType * GetEnergyOutput();
......@@ -230,6 +242,11 @@ private:
//TODO: should we use constexpr? only c++11 and problem for msvc
inline double GetPixelValueTolerance() const {return 0.0001; }
/** Sub-sampling factor */
SizeType m_SubsampleFactor;
/** Sub-sampling offset */
IndexType m_SubsampleOffset;
};
} // End namespace otb
......
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