Commit c8ed08d0 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #2058 from shimat:fix_superres_typo

parents b7e78523 9a5f442d
...@@ -123,10 +123,10 @@ namespace cv ...@@ -123,10 +123,10 @@ namespace cv
virtual void setTau(double val) = 0; virtual void setTau(double val) = 0;
//! @brief Weight parameter to balance data term and smoothness term //! @brief Weight parameter to balance data term and smoothness term
/** @see setLabmda */ /** @see setLambda */
virtual double getLabmda() const = 0; virtual double getLambda() const = 0;
/** @copybrief getLabmda @see getLabmda */ /** @copybrief getLambda @see getLambda */
virtual void setLabmda(double val) = 0; virtual void setLambda(double val) = 0;
//! @brief Parameter of spacial distribution in Bilateral-TV //! @brief Parameter of spacial distribution in Bilateral-TV
/** @see setAlpha */ /** @see setAlpha */
......
...@@ -478,8 +478,8 @@ namespace ...@@ -478,8 +478,8 @@ namespace
inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; } inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; }
inline double getTau() const CV_OVERRIDE { return tau_; } inline double getTau() const CV_OVERRIDE { return tau_; }
inline void setTau(double val) CV_OVERRIDE { tau_ = val; } inline void setTau(double val) CV_OVERRIDE { tau_ = val; }
inline double getLabmda() const CV_OVERRIDE { return lambda_; } inline double getLambda() const CV_OVERRIDE { return lambda_; }
inline void setLabmda(double val) CV_OVERRIDE { lambda_ = val; } inline void setLambda(double val) CV_OVERRIDE { lambda_ = val; }
inline double getAlpha() const CV_OVERRIDE { return alpha_; } inline double getAlpha() const CV_OVERRIDE { return alpha_; }
inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; } inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; }
inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; } inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; }
......
...@@ -223,8 +223,8 @@ namespace ...@@ -223,8 +223,8 @@ namespace
inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; } inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; }
inline double getTau() const CV_OVERRIDE { return tau_; } inline double getTau() const CV_OVERRIDE { return tau_; }
inline void setTau(double val) CV_OVERRIDE { tau_ = val; } inline void setTau(double val) CV_OVERRIDE { tau_ = val; }
inline double getLabmda() const CV_OVERRIDE { return lambda_; } inline double getLambda() const CV_OVERRIDE { return lambda_; }
inline void setLabmda(double val) CV_OVERRIDE { lambda_ = val; } inline void setLambda(double val) CV_OVERRIDE { lambda_ = val; }
inline double getAlpha() const CV_OVERRIDE { return alpha_; } inline double getAlpha() const CV_OVERRIDE { return alpha_; }
inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; } inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; }
inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; } inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment