@@ -100,21 +100,21 @@ class IsotropicWaveletFrequencyFunction:
100100 virtual FunctionValueType EvaluateInverseSubBand ( const FunctionValueType& freq_in_hz,
101101 unsigned int j) const ;
102102
103- /* * Gets and sets parameters */
103+ /* * Number of HighPassSubBands in the high filter decomposition.
104+ * Default to the minimal value: 1. */
104105 itkGetConstMacro (HighPassSubBands, unsigned int );
105- /* * Set HighPassSubBands. Default 1, high_pass_bands must be greater than zero. Virtual in case derived class user want to impose more conditions **/
106106 virtual void SetHighPassSubBands (const unsigned int & high_pass_bands);
107107
108+ /* * Cut off frequency for low and high pass frequency.
109+ * Default to 0.25 Hz ( pi/2 rad/s ) but can be changed in child classes. */
110+ itkGetConstMacro (FreqCutOff, FunctionValueType);
111+ // itkSetMacro(FreqCutOff, FunctionValueType);
108112protected:
109113 IsotropicWaveletFrequencyFunction ();
110114 virtual ~IsotropicWaveletFrequencyFunction ();
111115 virtual void PrintSelf (std::ostream & os, Indent indent) const ITK_OVERRIDE;
112116
113- /* * Number of HighPassSubBands in the high filter decomposition.
114- * Default to just one HighPass filter (no subbands) */
115117 unsigned int m_HighPassSubBands;
116- /* * Cut off frequency for low and high pass frequency.
117- * Default to 0.25 Hz ( pi/2 rad/s ) but can be changed in child classes. */
118118 FunctionValueType m_FreqCutOff;
119119
120120private:
0 commit comments